Files
rust/src/test/ui/issues/issue-23589.rs

6 lines
155 B
Rust
Raw Normal View History

2015-06-18 23:18:15 +03:00
fn main() {
let v: Vec(&str) = vec!['1', '2'];
//~^ ERROR parenthesized parameters may only be used with a trait
//~| ERROR mismatched types
2015-06-18 23:18:15 +03:00
}