pascalabcnet/TestSuite/errors/err0371_static_predefinition.pas

13 lines
140 B
ObjectPascal
Raw Permalink Normal View History

2020-06-24 10:21:01 +03:00
// #2266
type
T1 = class;
{T2 = class
tt: T1;
end;}
T1 = static class
//public static a: integer;
end;
begin
end.