update NOTICE and LICENSE
[nit.git] / tests / error_inh_loop.nit
index 8c9cf1b..0e778f9 100644 (file)
 # 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