Skip to content

Instantly share code, notes, and snippets.

@stepancheg
Created October 29, 2012 21:01
Show Gist options
  • Save stepancheg/3976519 to your computer and use it in GitHub Desktop.
Save stepancheg/3976519 to your computer and use it in GitHub Desktop.
asas
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