expand: constify sepops operand to expand_expr_real_2 and expand_widen_pattern_expr...
[official-gcc.git] / gcc / testsuite / gfortran.dg / pointer_check_10.f90
blob7e445f962d04b252659508a522212b1b03f0a259
1 ! { dg-do run }
2 ! { dg-options "-fcheck=all -std=f2003 " }
3 ! { dg-shouldfail "Pointer actual argument 'ptr' is not associated" }
5 ! PR fortran/49255
7 ! Valid F2008, invalid F95/F2003.
9 integer,pointer :: ptr => null()
10 call foo (ptr)
11 contains
12 subroutine foo (x)
13 integer, optional :: x
14 if (present (x)) STOP 1
15 end subroutine foo
16 end