rust/tests/ui/issues/issue-23589.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
165 B
Rust
Raw Normal View History

2015-06-18 20:18:15 +00: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 20:18:15 +00:00
}