/*
* Doc Name: Basic Concepts: constructor, copy constructor,
assignment operation
* Prob Id: -
* Serial Id: A.2.1
* Author: -
* Env: DevCpp mingw
* Date: 10/10/27
*/
#include <iostream>
#include <exception>
using namespace std;
class A
{
public:
A(const A& src){}
};
int main()
{
A instA;
system("PAUSE");
return 0;
}