1 ! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
3 ! 2.11.3 allocate Directive
4 ! List items specified in the allocate directive must not have the ALLOCATABLE attribute unless the directive is associated with an
10 real, dimension (:,:), allocatable
:: darray
12 !ERROR: List items specified in the ALLOCATE directive must not have the ALLOCATABLE attribute unless the directive is associated with an ALLOCATE statement
13 !$omp allocate(darray) allocator(omp_default_mem_alloc)
15 !$omp allocate(darray) allocator(omp_default_mem_alloc)
16 allocate(darray(a
, b
))
18 end subroutine allocate