This program ``` rust static FOO: uint = 10; pub enum Thing { Foo = FOO } ``` throws a `dead_code` warning, but shouldn't: ``` test.rs:1:0: 1:22 warning: code is never used: `FOO`, #[warn(dead_code)] on by default test.rs:1 static FOO: uint = 10; ^~~~~~~~~~~~~~~~~~~~~~ ```