fpc/tests/tbs/tb0468a.pas
sergei adc8cdb5af * Calling tlabelsym.mangledname should not define the label. This was causing "already defined" errors if a label was referenced before it was defined.
+ Test.
+ Check duplicate labels in assembler blocks. This was impossible due to above bug and duplicate labels were detected only at assembling stage where no location information could be provided.

git-svn-id: trunk@27472 -
2014-04-05 01:17:36 +00:00

28 lines
195 B
ObjectPascal

{ %OPT=-Sg }
procedure foo;
begin
end;
procedure test;
label
a,b,c,d;
const
x: array[0..3] of pointer=(@a,@b,@c,@d);
begin
foo;
a:
foo;
b:
foo;
c:
foo;
d:
foo;
end;
begin
end.