testsuite: Fix unallocated array usage in test

gcc/testsuite/ChangeLog:

	* gfortran.dg/asan/array_constructor_1.f90: Allocate array
	before using it.
This commit is contained in:
Mikael Morin
2025-07-05 15:05:20 +02:00
parent e7f049471c
commit ca03469475

View File

@ -9,6 +9,8 @@ program grow_type_array
type(container), allocatable :: list(:)
allocate(list(0))
list = [list, new_elem(5)]
deallocate(list)