X-Git-Url: http://nitlanguage.org diff --git a/tests/error_spe_attr.nit b/tests/error_spe_attr.nit index e589ec7..5570921 100644 --- a/tests/error_spe_attr.nit +++ b/tests/error_spe_attr.nit @@ -15,9 +15,9 @@ # limitations under the License. class A - var _a: Int = 1 + var a: Int = 1 end class B super A - redef var _a: Object = 2 + redef var a: Object = 2 end