blob: 6317258e6ec8d58503e8313af1902a7ad97c3be2 [file] [log] [blame]
! RUN: not %flang_fc1 -fsyntax-only %s -fopenmp 2>&1 | FileCheck %s
! From Standard: A blank common block cannot appear in a threadprivate directive.
program main
integer :: a
common//a
!CHECK: error: expected one of '$@ABCDEFGHIJKLMNOPQRSTUVWXYZ_'
!$omp threadprivate(//)
end