[AMDGPU] Test codegen'ing True16 additions.
[llvm-project.git] / flang / test / Semantics / critical06.f90
blobd4a17ff98f8428ec3747cf0be03642c707e554c5
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 program testcriticalconstruct
4 Start_name_only: Critical
5 !ERROR: CRITICAL construct name required but missing
6 End critical !C1117 in the Fortran 2018 standard
8 critical
9 !ERROR: CRITICAL construct name unexpected
10 end critical end_name_only !C1117 in Fortran 2018 standard
12 end program