aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr93686_3.f90
blob: 5b570407f8f2174e64159e1122f93fd34fbd0173 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! PR fortran/93686

program p
   type t
   end type
   type(t), pointer :: x
   data x /t()/ ! { dg-error "part-ref with pointer attribute near ... is not rightmost part-ref of data-stmt-object" }
end