fpc/tests/webtbf/tw21078.pp
Jonas Maebe 5c56b1bc3d * give an error when trying to take address of a global label declared in
another scope instead of crashing (mantis #21078)

git-svn-id: trunk@20508 -
2012-03-10 23:24:43 +00:00

15 lines
100 B
ObjectPascal

{ %fail }
{$goto on}
label x;
var p:pointer;
procedure Foo();
begin
x:
end;
begin
p:=@x;
end.