blob: 09f7b7666ce64c01b79e8765c07f0d3f3ca0a7b7 [file] [log] [blame]
Tim Keith99aa87a2020-05-11 18:38:531! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
Jinxin Yang4ca8c5d2019-09-11 21:42:512
3! 2.4 An array section designates a subset of the elements in an array. Although
4! Substring shares similar syntax but cannot be treated as valid array section.
5
6 character*8 c, b
7 character a
8
9 b = "HIFROMPGI"
10 c = b(2:7)
Jinxin Yangeeda3042019-10-24 14:04:4411 !ERROR: Substrings are not allowed on OpenMP directives or clauses
Jinxin Yang4ca8c5d2019-09-11 21:42:5112 !$omp parallel private(c(1:3))
13 a = c(1:1)
14 !$omp end parallel
15end