Right now, if I have the following: ``` rust struct Foo(pub uint); ``` I cannot have a static instance of the struct like so: ``` rust static FOO: Foo = Foo(1); ``` I get the following error: ``` function calls in constants are limited to struct and enum constructors ``` Edit: This seems like a dup of #17169