[Flang][OpenMP]Add parsing support for DISPATCH construct (#121982)
[llvm-project.git] / flang / test / Parser / unrecognized-dir.f90
blob91fbfc9ee3c378eea82bc6304b22986ef25b1e69
1 ! RUN: %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck %s
2 !CHECK: warning: Unrecognized compiler directive was ignored
3 !DIR$ Not a recognized directive
4 program main
5 contains
6 !CHECK: warning: Compiler directive ignored here
7 !DIR$ not in a subprogram
8 subroutine s
9 end
10 end