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

12 lines
243 B
ObjectPascal

uses SyntaxTree;
type TClass<T> = class end;
var b : int32_const;
vis : IVisitor;
t1 : System.Collections.Generic.List<integer>;
t2 : System.Collections.Generic.List<real>;
begin
b := new int32_const(45);
assert(b.val = 45);
end.