brintos

brintos / llvm-project-archived public Read only

0
0
Text · 224 B · 7eadfb7 Raw
10 lines · plain
1// RUN: not llvm-tblgen %s 2>&1 | FileCheck %s2// XFAIL: vg_leak3 4class A<string self> {5  int x = !cast<A>(self).x;6}7 8// CHECK: error: Attempting to access field 'x' of 'A0' is a forbidden self-reference9def A0 : A<"A0">;10