X-Git-Url: http://nitlanguage.org diff --git a/tests/error_super_none.nit b/tests/error_super_none.nit index bcadc86..605adfd 100644 --- a/tests/error_super_none.nit +++ b/tests/error_super_none.nit @@ -16,8 +16,11 @@ import kernel class A - meth foo + fun foo do super end end + +var a = new A +a.foo