1// RUN: llvm-tblgen %s | grep "int Y = 3" 2 3class C { 4 int X = 4; 5 int Y = X; 6} 7 8let X = 3 in 9def D : C; // Y should be 3 too! 10 11