URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [compile/] [contained_3.f90] - Rev 859
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to check using parent variables in more than one contained function
program contained_3
implicit none
integer var
contains
subroutine one
var = 1
end subroutine
subroutine two
var = 2
end subroutine
end program
Go to most recent revision | Compare with Previous | Blame | View Log