mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 22:10:32 +00:00
15 lines
193 B
C++
15 lines
193 B
C++
struct Foo
|
|
{
|
|
Foo() {}
|
|
~Foo() {}
|
|
Foo(Foo const&) = delete;
|
|
Foo& operator=(Foo const&) = delete;
|
|
int test() const { return 0; }
|
|
};
|
|
|
|
int main()
|
|
{
|
|
Foo const foo;
|
|
return foo.test();
|
|
}
|