Skip to content

Instantly share code, notes, and snippets.

@joliss
Last active October 20, 2015 02:52
Show Gist options
  • Select an option

  • Save joliss/90af5c2485af120f449d to your computer and use it in GitHub Desktop.

Select an option

Save joliss/90af5c2485af120f449d to your computer and use it in GitHub Desktop.
#include <iostream>
class A {
public:
static void do_something() { std::cout << "yay\n"; }
};
class B : public A {
};
int main() {
B::do_something();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment