You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
572 B
21 lines
572 B
!RUN: %S/test_errors.sh %s %t %f18 -fopenmp
|
|
! OpenMP Version 4.5
|
|
! 2.15.3.2 parallel shared Clause
|
|
program omp_parallel_shared
|
|
integer :: i, j, a(10), b(10), c(10)
|
|
integer :: k = 10
|
|
type my_type
|
|
integer :: array(10)
|
|
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 in a PRIVATE or SHARED clause.
|
|
!$omp parallel shared(my_var%array)
|
|
do i = 1, 10
|
|
c(i) = a(i) + b(i) + k
|
|
my_var%array(i) = k
|
|
end do
|
|
!$omp end parallel
|
|
end program omp_parallel_shared
|