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

6 lines
173 B
Rust
Raw Normal View History

2014-11-23 12:27:10 +01:00
fn main() {
2015-01-31 17:23:42 +01:00
let t = (42, 42);
t.0::<isize>; //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `::`
//~| ERROR mismatched types
2014-11-23 12:27:10 +01:00
}