mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
62ba3e70a1
The previous output was unintuitive to users.
15 lines
380 B
Rust
15 lines
380 B
Rust
pub fn foo(params: Option<&[&str]>) -> usize {
|
|
params.unwrap().first().unwrap().len()
|
|
}
|
|
|
|
fn main() {
|
|
let name = "Foo";
|
|
let x = Some(&[name]);
|
|
let msg = foo(x);
|
|
//~^ ERROR mismatched types
|
|
//~| expected enum `Option<&[&str]>`
|
|
//~| found enum `Option<&[&str; 1]>`
|
|
//~| expected `Option<&[&str]>`, found `Option<&[&str; 1]>`
|
|
assert_eq!(msg, 3);
|
|
}
|