Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gfortran.fortran-torture / compile / contained_3.f90
blobda5e8475c54e02a8c449505a0b6ed0782534c829
1 ! Program to check using parent variables in more than one contained function
2 program contained_3
3 implicit none
4 integer var
5 contains
6 subroutine one
7 var = 1
8 end subroutine
9 subroutine two
10 var = 2
11 end subroutine
12 end program