[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / cast-typeerror.td
blobaf33a01d27e8885d9a4e0d01a7e15ab34d955e2e
1 // RUN: not llvm-tblgen %s 2>&1 | FileCheck %s
2 // XFAIL: vg_leak
4 class A;
5 class B;
7 def A0 : A;
9 class C<string name> {
10   B b = !cast<B>(name);
13 // CHECK: error: Expected type 'B', got 'A' in: !cast<B>("A0")
14 def Test : C<"A0">;