mirror of
https://github.com/gcc-mirror/gcc.git
synced 2025-08-16 17:10:17 +00:00
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:
@ -9,6 +9,8 @@ program grow_type_array
|
||||
|
||||
type(container), allocatable :: list(:)
|
||||
|
||||
allocate(list(0))
|
||||
|
||||
list = [list, new_elem(5)]
|
||||
|
||||
deallocate(list)
|
||||
|
Reference in New Issue
Block a user