nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_array_19.f90
blob0b28db180db2fb7d399a39f64e74fb00061cafb2
1 ! { dg-do compile }
3 ! PR 57285: [OOP] ICE on invalid: "gfc_array_dimen_size(): Bad dimension" due to SIZE intrinsic with invalid dim on CLASS dummy
5 ! Contributed by Lorenz Hüdepohl <bugs@stellardeath.org>
7 type type_t
8 end type
9 contains
10 subroutine foo(a)
11 class(type_t), intent(in) :: a(:)
12 type(type_t) :: c(size(a,dim=2)) ! { dg-error "is not a valid dimension index" }
13 end subroutine
14 end