• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 class A
2 {
3 public:
4   int x;
A(int _x)5   A(int _x) : x(_x) {
6   }
7 };
8