[ARM] Split large truncating MVE stores
[llvm-complete.git] / test / TableGen / if-type.td
blob809195be007eb43e2e720b75be08a67125898ce6
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: Value 'x' of type 'C' is incompatible with initializer '{{.*}}' of type 'A'
9 class X<int cc, B b, C c> {
10   C x = !if(cc, b, c);