1 ! RUN: %S/test_errors.sh %s %t %flang_fc1 -fopenmp
4 ! 2.11.3 allocate Directive
5 ! List items specified in the allocate directive must not have the ALLOCATABLE attribute unless the directive is associated with an
11 real, dimension (:,:), allocatable
:: darray
13 !ERROR: List items specified in the ALLOCATE directive must not have the ALLOCATABLE attribute unless the directive is associated with an ALLOCATE statement
14 !$omp allocate(darray) allocator(omp_default_mem_alloc)
16 !$omp allocate(darray) allocator(omp_default_mem_alloc)
17 allocate(darray(a
, b
))
19 end subroutine allocate