10 lines
84 B
C++
10 lines
84 B
C++
struct S {
|
|
int a;
|
|
};
|
|
|
|
struct Bar {
|
|
void bar(int _a) {
|
|
S s = { _a };
|
|
};
|
|
};
|