Increase timeout factor for hppa*-*-* in gcc.dg/long_branch.c
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr90988_1.f90
blobf8b6f1331631667a6c31ed7f6b44dfdeeb026356
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 :: publici,publicj
11 publici = a%i
12 publicj = a%j ! { dg-error "is not a member" }
13 end subroutine mysub
14 end module mymod