PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / parens_5.f90
blob789fef8e1f96898ee1a922100fb7c17f138948b4
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
4 ! Another case of fallout from the original patch for PR14771
5 ! Testcase by Erik Zeek
6 module para
7 contains
8 function bobo(n)
9 integer, intent(in) :: n
10 character(len=(n)) :: bobo ! Used to fail here
11 bobo = "1234567890"
12 end function bobo
13 end module para
15 program test
16 use para
17 implicit none
18 character*5 c
19 c = bobo(5)
20 if (c .ne. "12345") STOP 1
21 end program test