pascalabcnet/TestSuite/typeof.pas

7 lines
493 B
ObjectPascal
Raw Permalink Normal View History

2018-09-23 19:29:00 +03:00
begin
assert(typeof(System.Collections.Generic.Dictionary<,>).FullName = 'System.Collections.Generic.Dictionary`2');
assert(typeof(List<>).FullName = 'System.Collections.Generic.List`1');
assert(typeof(System.Collections.Generic.Dictionary<,{}>).FullName = 'System.Collections.Generic.Dictionary`2');
assert(typeof(List<{}>).FullName = 'System.Collections.Generic.List`1');
assert(typeof(List<integer>).FullName.StartsWith('System.Collections.Generic.List`1[[System.Int32'));
end.