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