aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/f2c_8.f90
blob: 03baa36be53683a517a01c3b9be225a4bbf561f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
! { dg-do compile }
! { dg-options "-ff2c" }
! PR 25392
! Verify that the type of the result variable matches the declared
! type of the function.  The actual type of the function may be
! different for f2c calling conventions.
real function goo () result (foo)
  real x
  foo = sign(foo, x)
end

real function foo ()
  real x
  foo = sign(foo, x)
end