pascalabcnet/TestSuite/with2.pas
Бондарев Иван 4600c3b734 fix #1159
fix #1143
2018-09-06 20:49:18 +02:00

17 lines
440 B
ObjectPascal

begin
with System do
begin
assert(Environment.CurrentDirectory = System.Environment.CurrentDirectory);
end;
with System.Environment do
begin
assert(CurrentDirectory = System.Environment.CurrentDirectory);
end;
with System.Runtime.InteropServices do
begin
var hnd: GCHandle;
var hnd2: System.Runtime.InteropServices.GCHandle;
var o: Expando.IExpando;
assert(hnd.GetType = hnd2.GetType);
end;
end.