Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gm2
/
pim
/
fail
/
badpointer.mod
blob: e8a199edde87cced48833487918385a9f3c961c5 [
file
]
MODULE badpointer
;
FROM
DynamicStrings
IMPORT
String
;
CONST
Hello
=
"hello world"
;
PROCEDURE testproc
(
s
:
String
)
;
BEGIN
END
testproc
;
PROCEDURE foo
;
BEGIN
testproc
(
Hello
)
END
foo
;
BEGIN
foo
END
badpointer
.