SuperClassErrors.hascasl.output revision f42bcc750a9a02cb4f753b70679f9aacf1b338d7
class a
class b < a
%% cycle
class c
class d
class e < c
%% indirect cycle
class h
%% no implicit declaration
class g
class g < a
%% g is already real class
class i < g
class g < i
%% cycle via i = g
class i
%% i is already alias class
classes
a < Type;
b < Type;
c < Type;
d < Type;
e < Type;
g < Type;
h < Type;
i < Type
classes
b < a;
e < c;
g < a;
i < g
*** Error 1.13, not a class 'b'
*** Error 3.11, not a class 'd'
*** Error 4.11, not a class 'e'
*** Error 6.11, not a class 'g'
### Warning 8.7, refined class 'g'
*** Error 10.7, cyclic class 'g'
### Warning 11.7, unchanged class 'i'