gamnit: make `SpriteSet` public so clients can use its services
[nit.git] / tests / error_signature.nit
index 7da246a..47f3160 100644 (file)
@@ -27,3 +27,12 @@ class C
        super A
        redef fun foo: Int do return 3
 end
+
+var a = new A
+a.foo.output
+
+var b = new B
+b.foo
+
+var c = new C
+c.foo