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

6 lines
165 B
Rust
Raw Normal View History

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