[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / prep-diag3.td
blobfbedfa290b9947dfcf3ba836159abb5a9c6ea202
1 // RUN: not llvm-tblgen -DDIAG1 -I %p %s 2>&1 | FileCheck --check-prefixes=DIAG1 %s
2 // RUN: not llvm-tblgen -I %p %s 2>&1 | FileCheck --check-prefixes=DIAG2 %s
4 #ifdef DIAG1
5 // DIAG1: error: Only comments are supported after #endif
7 // Invalid #else below should be detected even if DIAG1 is not defined.
8 // DIAG2: error: Only comments are supported after #endif
9 #ifdef DIAG2//DIAG2
10 #else/*!DIAG2*/
11 #endif/* !DIAG2
12 */class C;
13 #endif // DIAG1