This code compiled fine before 1.0.0-nightly (4be79d6ac 2015-01-23 16:08:14 +0000): ``` rust fn main() { for i in 0..100 { i as f32; } } ``` But with that version, it now gives this error: ``` <anon>:5:3: 5:11 error: the type of this value must be known in this context <anon>:5 i as f32; ^~~~~~~~ ```