Home | History | Annotate | Download | only in Inputs
      1 class A
      2 {
      3 public:
      4   int x;
      5   A(int _x) : x(_x) {
      6   }
      7 };
      8