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 660652 - Async with two catch clauses: error: duplicate member 'e'
Async with two catch clauses: error: duplicate member 'e'
Status: RESOLVED DUPLICATE of bug 596861
Product: vala
Classification: Core
Component: Code Generator: GAsync
0.14.x
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2011-10-01 20:56 UTC by Marc-Andre Lureau
Modified: 2011-10-01 20:59 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Marc-Andre Lureau 2011-10-01 20:56:44 UTC
The generated C file contains two e members:

struct _FooData {
...
        GError* e;
        GError* e;
...
};


async void foo () {
	try {
	} catch (GLib.Error e) {
	}

	try {
	} catch (GLib.Error e) {
	}
}
Comment 1 Luca Bruno 2011-10-01 20:59:22 UTC

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