nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / allocate_alloc_opt_8.f90
blob39aa3638b469348493d1221317d0a16fd9f3d1ec
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
4 ! PR 43388: [F2008][OOP] ALLOCATE with MOLD=
6 ! Contributed by Janus Weil <janus@gcc.gnu.org>
8 type :: t
9 end type
11 class(t),allocatable :: x
12 type(t) :: z
14 allocate(x,MOLD=z) ! { dg-error "MOLD tag at" }
16 end