mirror of
https://github.com/reactos/CMake.git
synced 2025-03-03 17:39:10 +00:00
10 lines
60 B
C++
10 lines
60 B
C++
|
|
struct A {
|
|
A() = default;
|
|
};
|
|
|
|
void someFunc()
|
|
{
|
|
A a;
|
|
}
|