view llvm/test/TableGen/foreach-range-parse-errors2.td @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children
line wrap: on
line source

// RUN: not llvm-tblgen %s 2>&1 | FileCheck -DFILE=%s %s

class ConstantsImpl {
  int NegOne = -1;
}

def Constants : ConstantsImpl;

// CHECK: [[FILE]]:[[@LINE+2]]:38: error: invalid range, cannot be negative
// CHECK: [[FILE]]:[[@LINE+1]]:38: error: expected declaration in for
foreach Index = 0 - Constants.NegOne in {

}