mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-15 00:49:53 -04:00
10 lines
125 B
C++
10 lines
125 B
C++
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
|
|
|
|
int x;
|
|
struct A {
|
|
int& y;
|
|
A() : y(x) {}
|
|
};
|
|
A z;
|
|
|