* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / pointer_check_9.f90
blobd42ba64d78b33e833ffc7cb593dfd1b04f8865c8
1 ! { dg-do run }
2 ! { dg-options "-fcheck=all -std=f2008 -fall-intrinsics" }
4 ! PR fortran/49255
6 ! Valid F2008, invalid F95/F2003.
8 integer,pointer :: ptr => null()
9 call foo (ptr)
10 contains
11 subroutine foo (x)
12 integer, optional :: x
13 if (present (x)) call abort ()
14 end subroutine foo
15 end