Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
deref-2.a68
blob: d49dc4a6987d3888dfc4c27b91a57fb4d1a7918c [
file
] [
log
] [
blame
]
# { dg-options "-fstropping=upper" } #
BEGIN
INT x
:=
10
;
REF INT xx
:=
x
;
x
:=
20
;
ASSERT
(
xx
=
20
)
END