rust/src/test/ui/parser/issue-19096.rs

5 lines
173 B
Rust

fn main() {
let t = (42, 42);
t.0::<isize>; //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `::`
//~| ERROR mismatched types
}