Skip to content

Instantly share code, notes, and snippets.

@munro
Created November 18, 2011 06:01
Show Gist options
  • Save munro/1375735 to your computer and use it in GitHub Desktop.
Save munro/1375735 to your computer and use it in GitHub Desktop.
Why not?
class FooA {
public:
int a;
}
class FooB : public FooA {
public:
int b;
}
class BarA {
public:
FooA *hello;
}
class BarB : public BarA {
public:
FooB *hello; // Why can't I do this?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment