mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
5a7ec20606
Closes #918
16 lines
149 B
C++
16 lines
149 B
C++
template <class T>
|
|
class Foo {
|
|
|
|
public:
|
|
|
|
Foo() {}
|
|
|
|
Foo(int i) {
|
|
(void)i;
|
|
}
|
|
|
|
private:
|
|
void operator=(const Foo&);
|
|
|
|
};
|