Files
clang-p2996/flang/test/Semantics/OpenMP/allocators02.f90
Kiran Chandramohan 15710bbdad [Flang][OpenMP] Re-enable tests on windows 1/n (#92904)
Re-enable tests starting with a or b.
2024-05-22 10:21:46 +01:00

23 lines
629 B
Fortran

! REQUIRES: openmp_runtime
! RUN: %python %S/../test_errors.py %s %flang_fc1 %openmp_flags
! OpenMP Version 5.2
! 6.7 allocators construct
! A variable that is part of another variable (as an array or
! structure element) cannot appear in an allocatprs construct.
subroutine allocate()
use omp_lib
type my_type
integer, allocatable :: array(:)
end type my_type
type(my_type) :: my_var
!ERROR: A variable that is part of another variable (as an array or structure element) cannot appear on the ALLOCATORS directive
!$omp allocators allocate(my_var%array)
allocate(my_var%array(10))
end subroutine allocate