blob: 809e4cfcf337fcd7fd42f7f72b1527983aefb6b0 [file] [log] [blame]
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();
}