[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / foreach-range-parse-errors0.td
blob2da5ce05634624249881347eadf981e4656c8b25
1 // RUN: not llvm-tblgen %s 2>&1 | FileCheck -DFILE=%s %s
3 class ConstantsImpl {
4   int Zero = 0;
5   int One = 1;
6   int Two = 2;
7   int Three = 3;
8   int Five = 5;
11 def Constants : ConstantsImpl;
13 // CHECK-NOT:  error: Unknown or reserved token when parsing a value
14 // CHECK: [[FILE]]:[[@LINE+3]]:22: error: Unknown or reserved token when parsing a value
15 // CHECK: [[FILE]]:[[@LINE+2]]:22: error: expected integer value as end of range
16 // CHECK: [[FILE]]:[[@LINE+1]]:22: error: expected declaration in for
17 foreach Index = 0 -  in {