Skip to content

Instantly share code, notes, and snippets.

@rightfold
Last active August 29, 2015 14:22
Show Gist options
  • Save rightfold/34df7551a50764d4d34f to your computer and use it in GitHub Desktop.
Save rightfold/34df7551a50764d4d34f to your computer and use it in GitHub Desktop.
class Car {
public:
explicit Car(int type) : speed(0), type(type) { }
int speed;
private:
int type;
};
class Human {
public:
Human() : car(1) { }
Car car;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment