fpc/tests/tbs/tb0518.pp
2006-12-23 20:53:47 +00:00

15 lines
184 B
ObjectPascal

{$mode delphi}
type
tc = class
constructor create(const n: ansistring);
end;
constructor tc.create;
begin
if (n <> 'abc') then halt(1);
end;
begin
tc.create('abc');
end.