blob: 22651348bf501f5db5502e46f639e23487245b0c [file] [log] [blame]
! RUN: %python %S/test_errors.py %s %flang_fc1 -fopenmp
! OpenMP Version 5.0
! 2.11.3 allocate Directive
! List items specified in the allocate directive must not have the ALLOCATABLE attribute unless the directive is associated with an
! allocate statement.
subroutine allocate()
use omp_lib
integer :: a, b, x
real, dimension (:,:), allocatable :: darray
!ERROR: List items specified in the ALLOCATE directive must not have the ALLOCATABLE attribute unless the directive is associated with an ALLOCATE statement
!$omp allocate(darray) allocator(omp_default_mem_alloc)
!$omp allocate(darray) allocator(omp_default_mem_alloc)
allocate(darray(a, b))
end subroutine allocate