X-Git-Url: http://nitlanguage.org diff --git a/tests/error_spe_attr.nit b/tests/error_spe_attr.nit index 7c4610c..235eef4 100644 --- a/tests/error_spe_attr.nit +++ b/tests/error_spe_attr.nit @@ -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 + redef var _a: Object end