14 lines · plain
1// RUN: not mlir-opt %s -o - --split-input-file 2>&1 | FileCheck %s2// This test verifies that diagnostic handler doesn't emit splits.3 4 5// -----6 7 8 9func.func @constant_out_of_range() {10 // CHECK: mlir:11:8: error: 'arith.constant'11 %x = "arith.constant"() {value = 100} : () -> i112 return13}14