From: Rico Tzschichholz Date: Mon, 15 Jan 2018 13:54:27 +0000 (+0100) Subject: test: Drop workaround for fixed bug with compact classes X-Git-Tag: 0.34.14~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7b8a7c4d4fa36a577e3f5a5c698a9e8e2e46ef0;p=thirdparty%2Fvala.git test: Drop workaround for fixed bug with compact classes https://bugzilla.gnome.org/show_bug.cgi?id=533977 --- diff --git a/tests/objects/classes.vala b/tests/objects/classes.vala index a89f475e6..24c45edb4 100644 --- a/tests/objects/classes.vala +++ b/tests/objects/classes.vala @@ -10,9 +10,6 @@ class CompactClassWithDestructor { ~CompactClassWithDestructor () { stdout.printf ("~CompactClassWithDestructor\n"); } - - /* FIXME bug 533977 */ - public char dummy; } class DerivedClass : CompactClass {