pascalabcnet/Yield/tests/TestUnitGlobalsCollector.pas

14 lines
194 B
ObjectPascal
Raw Permalink Normal View History

2016-05-19 02:14:06 +03:00
//unit TestUnitGlobalsCollector;
//interface
var testGlobal: integer;
//implementation
//var testGlobalImpl: integer;
type A = class
testField: integer;
end;
begin
testGlobal := 777;
end.