OSDN Git Service

2010-04-06 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / iso_fortran_env_6.f90
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
3 !
4 ! Check for new F2008 integer constants, needed for
5 ! coarray support (cf. PR fortran/18918)
6 !
7
8 USE iso_fortran_env
9 implicit none
10 integer(kind=ATOMIC_INT_KIND) :: atomic_int ! { dg-error "has no IMPLICIT type" }
11 logical(kind=ATOMIC_LOGICAL_KIND) :: atomic_bool ! { dg-error "has no IMPLICIT type" }
12
13 if (IOSTAT_INQUIRE_INTERNAL_UNIT <= 0) call abort() ! { dg-error "has no IMPLICIT type" }
14 print *,STAT_STOPPED_IMAGE ! { dg-error "has no IMPLICIT type" }
15 print *, STAT_LOCKED_OTHER_IMAGE ! { dg-error "has no IMPLICIT type" }
16 print *, STAT_LOCKED ! { dg-error "has no IMPLICIT type" }
17 print *, STAT_UNLOCKED ! { dg-error "has no IMPLICIT type" }
18 end
19
20 module m
21 USE iso_fortran_env, only: ATOMIC_INT_KIND ! { dg-error "is not in the selected standard" }
22 implicit none
23 end module m
24
25 module m2
26 USE iso_fortran_env, only: foo => STAT_UNLOCKED ! { dg-error "is not in the selected standard" }
27 implicit none
28 end module m2
29
30 module m3
31 USE iso_fortran_env, foo => IOSTAT_INQUIRE_INTERNAL_UNIT ! { dg-error "not found" }
32 implicit none
33 end module m3