blob: 0d871427ce60ff4403060e2b402f1912b7d54ae3 [file] [log] [blame]
! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
! CHECK: not yet implemented: OpenMP Block construct clause
subroutine sb
integer, save :: a
!$omp threadprivate(a)
!$omp parallel
!$omp single
a = 3
!$omp end single copyprivate(a)
!$omp end parallel
end subroutine