2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / binding_label_tests_26a.f90
blob32cf07ae7c4a03c975884fb017f401299e68b6ad
1 ! { dg-do compile }
3 ! PR 58182: [4.9 Regression] ICE with global binding name used as a FUNCTION
5 ! Contributed by Andrew Bensons <abensonca@gmail.com>
7 ! This file must be compiled BEFORE binding_label_tests_26b.f90, which it
8 ! should be because dejagnu will sort the files.
10 module fg
11 contains
12 function fffi(f)
13 interface
14 function f() bind(c)
15 end function
16 end interface
17 end function
18 end module
20 ! { dg-final { keep-modules "" } }