2010-07-27 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc/alias-decl.git] / gcc / testsuite / gfortran.dg / save_3.f90
blobab2ee52685a31e6bda85e9c8437f9526c0f5cc45
1 ! { dg-do compile }
3 ! PR fortran/35837
4 ! We used do have a problem with resolving "save all" and nested namespaces.
6 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
8 module g95bug
9 save
10 integer :: i=20
11 contains
12 pure function tell_i() result (answer)
13 integer :: answer
14 answer=i
15 end function tell_i
16 end module g95bug
18 ! { dg-final { cleanup-modules "g95bug" } }