* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / use_3.f90
blob1cfc71b2c2edf10687179a79f42a8821926c8bb2
1 ! { dg-do compile }
2 module foo
3 end module foo
5 use foo
6 use :: foo
7 use, intrinsic iso_fortran_env ! { dg-error "\"::\" was expected after module nature" }
8 use, non_intrinsic iso_fortran_env ! { dg-error "\"::\" was expected after module nature" }
9 use, nonintrinsic :: iso_fortran_env ! { dg-error "shall be either INTRINSIC or NON_INTRINSIC" }
10 use, intrinsic :: iso_fortran_env
11 end