c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr87993.f90
blob96d353d64f884382451bc7517d71350f97b1261d
1 ! { dg-do run }
2 ! Code contributed by Gerhard Steinmetz <gscfq at t-online dot de>
3 program p
4 integer, parameter :: a(2) = 1
5 integer, parameter :: b = a%kind
6 if (any(a /= 1)) stop 1
7 if (b /= kind(a)) stop 2
8 end