RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr88357_2.f90
blobd89511b103a03badf99cb6e8ab30a0764b4d05fa
1 ! { dg-do compile }
2 program p
3 type t
4 end type
5 class(t) :: x ! { dg-error "must be dummy, allocatable or pointer" }
6 associate (y => x)
7 end associate
8 end