pascalabcnet/TestSuite/Set_char_string.pas

5 lines
115 B
ObjectPascal
Raw Normal View History

2019-03-20 20:40:32 +03:00
begin
var s: set of string := ['b','d '];
foreach var o in s do
Assert(o.GetType = typeof(string));
end.