xref: /aosp_15_r20/external/llvm/test/TableGen/LazyChange.td (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1// RUN: llvm-tblgen %s | FileCheck %s
2
3// CHECK: int Y = 3
4
5class C {
6  int X = 4;
7  int Y = X;
8}
9
10let X = 3 in
11def D : C;    // Y should be 3 too!
12
13