aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/stfunc_5.f90
blob: 49170208af5835e9a0919f1e7c02f0e5eaf674d0 (plain)
1
2
3
4
5
6
7
8
! { dg-do compile }
!
! PR fortran/32724
! ICE on statement function in specification part of module

MODULE stmt
f(x) = x**2      ! { dg-error "Unexpected STATEMENT FUNCTION" }
END MODULE