[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / defset-typeerror.td
blobcdc7833fa3a4a36a716265816606f181e34f7e5f
1 // RUN: not llvm-tblgen %s 2>&1 | FileCheck %s
2 // XFAIL: vg_leak
4 // CHECK: error: adding record of incompatible type 'A' to defset
6 class A<int a> {
7   int Num = a;
10 class B<int a> : A<a>;
12 defset list<B> Bs = {
13   def A0 : A<1>;