PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / scalar_return_1.f90
blobdf206458e3a885cd2ed57182e6026e87425b1aa9
1 ! { dg-do compile }
2 ! { dg-options "-std=legacy" }
4 ! tests the fix for pr25082 in which the return of an array by a
5 ! subroutine went undremarked.
7 ! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
9 SUBROUTINE S1(*)
10 INTEGER :: a(2)
11 RETURN a ! { dg-error " requires a SCALAR" }
12 END SUBROUTINE S1