blob: 46c97da65b8bdc1409be0f97570c3dd8b0c8c5f8 [file] [log] [blame]
program validattributes ! Tests that valid attributes (intent(inout)) are allowed.
end program validattributes
subroutine sub(y,z) !<<<<< 4, 1, 4, 5, integer; intent(inout) :: y, 0, 0, pass
integer, intent(inout) :: y
integer, intent(in) :: z
end subroutine