Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
algol68
/
compile
/
warning-scope-6.a68
blob: fa3888d652897d71128e431766b2416229d7dece [
file
]
# { dg-options {-Wscope -fstropping=upper} } #
BEGIN
(
PROC REAL p
;
REAL mypi
:=
3.14
;
(
REAL x
;
p
:=
REAL
:
mypi
*
2
);
# No scope violation here. #
p
)
END