Skip to main content
summaryrefslogtreecommitdiffstats
blob: efe678565d4dcb88a0b77811bd48a2df8096993a (plain) (blame)
1
2
3
4
5
6
program defaultvalueisnullfornonpointer ! Tests that null cannot be the default value for a non pointer

end program defaultvalueisnullfornonpointer
subroutine sub(z) !<<<<< 4, 1, 4, 5, integer :: y, 0, null, fail-final
    integer, intent(in) :: z
end subroutine

Back to the top