aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/scalar_return_1.f90
blob: df206458e3a885cd2ed57182e6026e87425b1aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do compile }
! { dg-options "-std=legacy" }
!
! tests the fix for pr25082 in which the return of an array by a
! subroutine went undremarked.
!
! Contributed by Joost VandeVondele  <jv244@cam.ac.uk>
!
SUBROUTINE S1(*)
INTEGER :: a(2)
RETURN a ! { dg-error " requires a SCALAR" }
END SUBROUTINE S1