lib/mnit: expand images to the nearest power of 2 for OpenGL ES 1.0
[nit.git] / tests / test_super.nit
index ea2d8ee..1a0036f 100644 (file)
 import kernel
 
 class A
-       meth foo
+       fun foo
        do
                0.output
        end
 end
 
 class B
-special A
-       redef meth foo
+       super A
+       redef fun foo
        do
                1.output
                super