After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 690335 - A virtual signal and an override method with a method call contractor failure.
A virtual signal and an override method with a method call contractor failure.
Status: RESOLVED DUPLICATE of bug 676802
Product: vala
Classification: Core
Component: Semantic Analyzer
unspecified
Other All
: High normal
: ---
Assigned To: Vala maintainers
Vala maintainers
rejects-valid
Depends on:
Blocks:
 
 
Reported: 2012-12-17 10:06 UTC by Tal
Modified: 2012-12-17 17:19 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Tal 2012-12-17 10:06:49 UTC
The flowing code cause valac error:

public class Foo : GLib.Object {
    public virtual void func() {
    }
   
    internal static void bug () {
        new Bar ();
    }
}
public class Bar : Foo {
    public override void func() {
    }
}

Valac(0.16.1) gives:

$ valac main.vala
main.vala:11.2-11.26: error: Bar.func: no suitable method found to override
    public override void func() {
    ^^^^^^^^^^^^^^^^^^^^^^^^^
Compilation failed: 1 error(s), 0 warning(s)

When there's some method inside classes(e.g. "bug"), no matter if it's static or not,
that calls Bar contractor, valac gives this error.

However, if "bug" method is outside of Foo class blocks, valac compiles fine.

Hope you can fix this.
Tal
Comment 1 Evan Nemerson 2012-12-17 17:19:20 UTC

*** This bug has been marked as a duplicate of bug 676802 ***