pascalabcnet/TestSamples/CompilationSamples/template_syntax_test.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

17 lines
437 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

type
cd1<T,C>=class
end;
cd2<T,C>=record
end;
cd3<T,C>=template //тожесамое что template class
end;
cd4<T,C>=template class
end;
cd5<T,C>=template record
end;
cd6<T,C>=interface //Выдавать ошибку "Интерфейс не может иметь......" Тожесамое с секциией where для классов, записей.....
end;
begin
end.