X-Git-Url: http://nitlanguage.org diff --git a/tests/error_inh_loop.nit b/tests/error_inh_loop.nit index 8c9cf1b..0f639a8 100644 --- a/tests/error_inh_loop.nit +++ b/tests/error_inh_loop.nit @@ -14,17 +14,19 @@ # See the License for the specific language governing permissions and # limitations under the License. -class Object -end +import kernel class A -special B + super B end class B -special C + super C end class C -special A + super A end + +var a = new A +a.output