1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/TableGen/LazyChange.td
2011-10-06 13:39:59 +00:00

12 lines
150 B
TableGen

// RUN: llvm-tblgen %s | grep {int Y = 3}
// XFAIL: vg_leak
class C {
int X = 4;
int Y = X;
}
let X = 3 in
def D : C; // Y should be 3 too!