aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/entry_5.f90
blob: ad0554c76adae98492ef180f2a2161b929de64d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! PR 24008
! an argument list to the entry is required
REAL FUNCTION funct()
  funct = 0.0
  RETURN
!
  ENTRY enter RESULT (answer)  ! { dg-error "Unclassifiable statement" }
  answer = 1.0
  RETURN
END FUNCTION funct