Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / TableGen / paste-reserved.td
blob222a8c202a60ffe7e060220939e5ec5e4922c041
1 // RUN: not llvm-tblgen -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
2 // RUN: not llvm-tblgen -DERROR2 %s 2>&1 | FileCheck --check-prefix=ERROR2 %s
4 defvar list1 = ["foo", "bar", "snork"];
6 // Pasting a list with a reserved word should produce an error.
8 #ifdef ERROR1
9 def list_paste {
10   list<string> the_list = list1 # in;
12 // ERROR1: error: Unknown or reserved token when parsing a value
13 #endif
16 // Pasting an identifier with a reserved word should produce an error.
18 #ifdef ERROR2
19 def name_paste#in {
21 // ERROR2: error: Unknown or reserved token when parsing a value
22 #endif