c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr88116_2.f90
blobcb0684fd49afb17fa366b1b83009d6a5c4a76d37
1 ! { dg-do run }
2 program p
3 real :: a(2) = [real :: 1, [integer :: (real(k), k=2,1), 2]]
4 real :: b(1) = [real :: [integer :: (dble(k), k=1,0), 2]]
5 if (a(1) /= 1. .or. a(2) /= 2. .or. b(1) /= 2.) stop 1
6 end