aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/entry_8.f90
blob: c68d75af7689ae98ccec821beb973487bb94da8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module entry_8_m
type t
  integer i
  real x (5)
end type t
end module entry_8_m

function f (i)
  use entry_8_m
  type (t) :: f,g
  f % i = i
  return
  entry g (x)
  g%x = x
end function f

use entry_8_m
type (t) :: f, g, res

res = f (42)
if (res%i /= 42) call abort ()
res = g (1.)
if (any (res%x /= 1.)) call abort ()
end