Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr90988_3.f90
blob66ba06bdf0214d74e1084a45a370bd2170587dfb
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 :: protectedi,protectedj
11 protectedi = a%i
12 protectedj = a%j ! { dg-error "is not a member" }
13 end subroutine mysub
14 end module mymod