llvm/test/TableGen: Remove XFAIL:vg_leak in dozen of tests, according to llvm-x86_64...
[oota-llvm.git] / test / TableGen / LazyChange.td
1 // RUN: llvm-tblgen %s | grep "int Y = 3"
2
3 class C {
4   int X = 4;
5   int Y = X;
6 }
7
8 let X = 3 in
9 def D : C;    // Y should be 3 too!
10