Skip to content

Instantly share code, notes, and snippets.

@rubber-duck
Created May 15, 2013 01:40
Show Gist options
  • Save rubber-duck/5581058 to your computer and use it in GitHub Desktop.
Save rubber-duck/5581058 to your computer and use it in GitHub Desktop.
class Foo
{
int foo;
}
int main()
{
const Foo[] foo = [new Foo(), new Foo(), new Foo()];
foo[0].foo= 1;
return 0;
}
test.d(13): Error: can only initialize const member foo inside constructor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment