[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / MultiClass-def-fail.td
blobed37e5cd71cbec9a83581e9587509eba065c041e
1 // RUN: not llvm-tblgen %s 2>&1 | FileCheck %s
2 // XFAIL: vg_leak
4 // This test checks that using def instead of defm gives a meaningful error
5 multiclass M2 {
6   def X;
9 // CHECK: error: Couldn't find class 'M2'. Use 'defm' if you meant to use multiclass 'M2'
10 def rec1 : M2;