bolt/deps/llvm-18.1.8/clang/test/Import/struct-layout/Inputs/Callee.cpp
2025-02-14 19:21:04 +01:00

9 lines
84 B
C++

struct S {
int a;
};
struct Bar {
void bar(int _a) {
S s = { _a };
};
};