]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
test: Drop workaround for fixed bug with compact classes
authorRico Tzschichholz <ricotz@ubuntu.com>
Mon, 15 Jan 2018 13:54:27 +0000 (14:54 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Mon, 15 Jan 2018 16:40:47 +0000 (17:40 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=533977

tests/objects/classes.vala

index a89f475e66e627043991a11a8a7dc44e0dd1d5d9..24c45edb4f0d2af88cf350e521406fd3fe261947 100644 (file)
@@ -10,9 +10,6 @@ class CompactClassWithDestructor {
        ~CompactClassWithDestructor () {
                stdout.printf ("~CompactClassWithDestructor\n");
        }
-
-       /* FIXME bug 533977 */
-       public char dummy;
 }
 
 class DerivedClass : CompactClass {