forked from qt-creator/qt-creator
10 lines
85 B
C++
10 lines
85 B
C++
![]() |
struct Foo {
|
||
|
Foo(const Foo &foo);
|
||
|
Foo(char c);
|
||
|
};
|
||
|
|
||
|
void f()
|
||
|
{
|
||
|
Foo foo(
|
||
|
}
|