blob: b0e4b5d414841b0ddfa67f66db5f684351e2c2a8 [file] [log] [blame]
! { dg-do compile }
! { dg-options "-std=gnu" }
!
! PR fortran/32778 - pedantic warning: intrinsics that
! are GNU extensions not part of -std=gnu
!
! (1/3) Check for excess errors if -std=gnu.
!
CHARACTER(len=255) :: tmp
REAL(8) :: x
! GNU extension, check overload of F77 standard intrinsic
x = ZABS(CMPLX(0.0, 1.0, 8))
! GNU extension
CALL flush()
! F95
tmp = ADJUSTL(" gfortran ")
! F2003
CALL GET_COMMAND (tmp)
END