X-Git-Url: http://nitlanguage.org diff --git a/tests/base_attr_init_val2.nit b/tests/base_attr_init_val2.nit index 4dd716f..14a7ba1 100644 --- a/tests/base_attr_init_val2.nit +++ b/tests/base_attr_init_val2.nit @@ -15,10 +15,10 @@ # limitations under the License. import end -class Object +interface Object end class Int end class A - attr _i: Int = 1 + var i: Int = 1 end