aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/operator_3.f90
blob: e702bf148d102b7b9102da9f716d80215cbeda49 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! PR fortran/31580
!
! Testcase contributed by Tobias Burnus <burnus AT gcc DOT gnu DOT org>
!
PROGRAM test
  real :: a,b
  if(a .nonex. b) stop       ! { dg-error "Unknown operator" }
end program