trick/test/SIM_default_member_initializer/models/Foo.hh
2019-12-11 14:19:10 -06:00

16 lines
149 B
C++

template <class T>
class Foo {
public:
Foo() {}
Foo(int i) {
(void)i;
}
private:
void operator=(const Foo&);
};