summaryrefslogtreecommitdiff
path: root/flang/test/Semantics/OpenMP/allocators06.f90
diff options
context:
space:
mode:
Diffstat (limited to 'flang/test/Semantics/OpenMP/allocators06.f90')
-rw-r--r--flang/test/Semantics/OpenMP/allocators06.f9018
1 files changed, 0 insertions, 18 deletions
diff --git a/flang/test/Semantics/OpenMP/allocators06.f90 b/flang/test/Semantics/OpenMP/allocators06.f90
deleted file mode 100644
index 8e63512369e3..000000000000
--- a/flang/test/Semantics/OpenMP/allocators06.f90
+++ /dev/null
@@ -1,18 +0,0 @@
-! REQUIRES: openmp_runtime
-
-! RUN: %python %S/../test_errors.py %s %flang_fc1 %openmp_flags -fopenmp-version=50
-! OpenMP Version 5.2
-! Inherited from 2.11.3 allocate directive
-! The allocate directive must appear in the same scope as the declarations of
-! each of its list items and must follow all such declarations.
-
-subroutine allocate()
- use omp_lib
- integer, allocatable :: a
-contains
- subroutine test()
- !ERROR: List items must be declared in the same scoping unit in which the ALLOCATORS directive appears
- !$omp allocators allocate(omp_default_mem_alloc: a)
- allocate(a)
- end subroutine
-end subroutine