[Clang] Fix buildbot failure introduced by #121788
[llvm-project.git] / flang / test / Parser / OpenMP / threadprivate-blank-common-block.f90
blob6317258e6ec8d58503e8313af1902a7ad97c3be2
1 ! RUN: not %flang_fc1 -fsyntax-only %s -fopenmp 2>&1 | FileCheck %s
2 ! From Standard: A blank common block cannot appear in a threadprivate directive.
4 program main
5 integer :: a
6 common//a
7 !CHECK: error: expected one of '$@ABCDEFGHIJKLMNOPQRSTUVWXYZ_'
8 !$omp threadprivate(//)
9 end