``` rust #![feature(tuple_indexing)] fn main() { let t = (0i,); println!("{}", t.0::<Vec<uint>>) } ``` Compiles and prints `0`. Generic type parameters on tuple indexing like this should be illegal. cc https://github.com/rust-lang/rust/issues/18680