Skip to content

Instantly share code, notes, and snippets.

@stepancheg
Created October 4, 2012 11:07
Show Gist options
  • Save stepancheg/3832975 to your computer and use it in GitHub Desktop.
Save stepancheg/3832975 to your computer and use it in GitHub Desktop.
struct aaa {
const int x;
aaa(): x(1) {}
};
int main() {
aaa a;
aaa b;
b = a; // compilation error
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment