misc/vim: inform the user when no results are found
[nit.git] / tests / bench_send.nit
index 2a7fa1b..03218dc 100644 (file)
@@ -16,7 +16,7 @@
 
 
 class A
-       readable writable var _val: Int = 0
+       var val: Int = 0
        fun hop(a: A, b: A, c: A)
        do
                if a.val > val then
@@ -52,7 +52,7 @@ class A
 end
 
 class B
-special A
+       super A
        redef fun val: Int
        do
                return 1
@@ -64,7 +64,7 @@ special A
 end
 
 class C
-special A
+       super A
        redef fun val: Int
        do
                return 2
@@ -76,7 +76,7 @@ special A
 end
 
 class D
-special A
+       super A
        redef fun val: Int
        do
                return 3