[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / cond-type.td
blob7dc42f77cb1caf9f25966ebc98867d08304c6939
1 // RUN: not llvm-tblgen %s 2>&1 | FileCheck %s
2 // XFAIL: vg_leak
4 class A<int dummy> {}
5 class B<int dummy> : A<dummy> {}
6 class C<int dummy> : A<dummy> {}
8 // CHECK: Field 'x' of type 'C' is incompatible with value '{{.*}}' of type 'A'
9 class X<int cc, B b, C c> {
10   C x = !cond(cc: b, 1 : c);