blob: 906a55e6fae0c3dc47d1979381b31689dd4f870a [file] [log] [blame]
program private
implicit none
real, private :: blah
integer, private, optional :: priv, blah
real :: hi
private :: hi
intrinsic hello
external goodbye
private hello
contains
subroutine hello
private
end subroutine
function FFF()
end function
end program private