[ create a new paste ] login | about

Link: http://codepad.org/0hKyU3zw    [ raw code | fork ]

C++, pasted on Jul 11:
1
2
3
4
5
6
7
8
9
10
11
class T {
  public:
    T() {}
  private:
    T(const T&);
    T& operator=(const T&);
};

void Fn(T);

int main() { return 0; }


Output:
No errors or program output.


Create a new paste based on this one


Comments: