aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / coarray_46.f90
blob273c6e86840d889aced074e00d9c503a8e5fdad1
1 ! { dg-do compile }
2 ! { dg-options "-fcoarray=lib -lcaf_single" }
4 ! Test the fix for PR83319
6 module foo_module
7 implicit none
8 type foo
9 integer, allocatable :: i(:)
10 end type
11 end module
13 use foo_module
14 implicit none
15 type(foo), save :: bar[*]
16 allocate(bar%i(1)) ! Used to ICE here.
17 end