Skip to content

Instantly share code, notes, and snippets.

@OdNairy
Created February 21, 2013 06:59
Show Gist options
  • Save OdNairy/5002826 to your computer and use it in GitHub Desktop.
Save OdNairy/5002826 to your computer and use it in GitHub Desktop.
Fucking test on exam
class S{
public:
static int i;
S(){++i;}
S(const S& ob){++i;}
};
int S::i = 0;
int main(int argc, char* argv[]){
S v(S());
cout << S::i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment