* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / initialization_23.f90
blob1931bca96b4ba8432c34449c409cff4264967d69
1 ! { dg-do compile }
3 ! PR 40875: The error was missed and an ICE ensued.
5 ! Contributed by Michael Richmond <michael.a.richmond@nasa.gov>
7 MODULE cdf_aux_mod
8 PUBLIC
9 TYPE :: one_parameter
10 CHARACTER :: name
11 END TYPE one_parameter
12 CHARACTER, PARAMETER :: the_alpha = one_parameter('c') ! { dg-error "Can't convert TYPE" }
13 CHARACTER, PARAMETER :: the_beta = (/one_parameter('c')/) ! { dg-error "Incompatible ranks" }
14 END MODULE cdf_aux_mod