* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr49179.f90
blob0a86e9e86508f19e9a805999a9be20ff7d23501f
1 ! { dg-options " -O -findirect-inlining" }
2 function more_OK (fcn)
3 character(*) more_OK
4 character (*), external :: fcn
5 more_OK = fcn ()
6 end function more_OK
7 character(4) :: answer
8 character(4), external :: is_OK, more_OK
9 answer = more_OK (is_OK)
10 contains
11 END