URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [iso_fortran_env_6.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-std=f2003" }!! Check for new F2008 integer constants, needed for! coarray support (cf. PR fortran/18918)!USE iso_fortran_envimplicit noneinteger(kind=ATOMIC_INT_KIND) :: atomic_int ! { dg-error "has no IMPLICIT type" }logical(kind=ATOMIC_LOGICAL_KIND) :: atomic_bool ! { dg-error "has no IMPLICIT type" }print *, OUTPUT_UNITif (IOSTAT_INQUIRE_INTERNAL_UNIT <= 0) call abort() ! { dg-error "has no IMPLICIT type" }print *,STAT_STOPPED_IMAGE ! { dg-error "has no IMPLICIT type" }print *, STAT_LOCKED_OTHER_IMAGE ! { dg-error "has no IMPLICIT type" }print *, STAT_LOCKED ! { dg-error "has no IMPLICIT type" }print *, STAT_UNLOCKED ! { dg-error "has no IMPLICIT type" }endmodule mUSE iso_fortran_env, only: INPUT_UNITUSE iso_fortran_env, only: ATOMIC_INT_KIND ! { dg-error "is not in the selected standard" }implicit noneend module mmodule m2USE iso_fortran_env, only: foo => STAT_UNLOCKED ! { dg-error "is not in the selected standard" }implicit noneend module m2module m3USE iso_fortran_env, foo => IOSTAT_INQUIRE_INTERNAL_UNIT ! { dg-error "not in the selected standard" }implicit noneend module m3
