mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-31 07:52:55 +01:00
231a6d09fc
llvm-svn: 169862
11 lines
132 B
TableGen
11 lines
132 B
TableGen
// RUN: llvm-tblgen %s | grep "int Y = 3"
|
|
|
|
class C {
|
|
int X = 4;
|
|
int Y = X;
|
|
}
|
|
|
|
let X = 3 in
|
|
def D : C; // Y should be 3 too!
|
|
|