c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / common_26.f90
blob5834d7c53e5316f886597acee87e85eeb5e5f8f7
1 ! { dg-do compile }
2 module mymod
3 type :: mytyp
4 integer :: i
5 end type mytyp
6 contains
7 subroutine mysub
8 implicit none
9 type(mytyp) :: a
10 integer :: commoni,commonj
11 commoni = a%i
12 commonj = a%j ! { dg-error "is not a member of" }
13 end subroutine mysub
14 end module mymod