update NOTICE and LICENSE
[nit.git] / tests / error_spe_attr.nit
index 7c4610c..75feb69 100644 (file)
@@ -15,9 +15,9 @@
 # limitations under the License.
 
 class A
-       attr _a: Int
+       var _a: Int
 end
 class B
-special A
-       redef attr _a: Object
+       super A
+       redef var _a: Object
 end