Skip to content

Instantly share code, notes, and snippets.

@sanohin
Created November 1, 2018 09:52
Show Gist options
  • Select an option

  • Save sanohin/82e703f22f9000ac23e908f95ac7b84c to your computer and use it in GitHub Desktop.

Select an option

Save sanohin/82e703f22f9000ac23e908f95ac7b84c to your computer and use it in GitHub Desktop.
#include <iostream>
class Kek {
public:
Kek() {
Kek::ref = this;
}
static Kek* ref;
};
Kek* Kek::ref = NULL;
int main() {
Kek* a = new Kek();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment