FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cxx11-test-constructor-delegation.cpp
Go to the documentation of this file.
1 class X
2 {
3  public:
4  int i_;
5  X(int i) : i_(i) {}
6  X() : X(42) {}
7 };
8 
9 int main(void)
10 {
11  X val;
12  return (val.i_-42) ? 1 : 0;
13 }
int main(void)