2022-02-16 15:48:46 +00:00
|
|
|
// edition:2021
|
|
|
|
|
|
|
|
fn foo(b: bool) -> impl std::fmt::Debug {
|
|
|
|
if b {
|
|
|
|
return vec![42]
|
|
|
|
}
|
|
|
|
[].into_iter().collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(b: bool) -> impl std::fmt::Debug {
|
|
|
|
if b {
|
|
|
|
return [].into_iter().collect()
|
|
|
|
}
|
|
|
|
vec![42]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bak(b: bool) -> impl std::fmt::Debug {
|
|
|
|
if b {
|
|
|
|
return std::iter::empty().collect()
|
|
|
|
}
|
|
|
|
vec![42]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn baa(b: bool) -> impl std::fmt::Debug {
|
|
|
|
if b {
|
|
|
|
return [42].into_iter().collect()
|
|
|
|
}
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn muh() -> Result<(), impl std::fmt::Debug> {
|
2022-02-14 13:25:26 +01:00
|
|
|
Err("whoops")?;
|
2022-10-19 17:17:19 +02:00
|
|
|
Ok(())
|
|
|
|
//~^ ERROR type annotations needed
|
2022-02-16 15:48:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn muh2() -> Result<(), impl std::fmt::Debug> {
|
2022-10-19 17:17:19 +02:00
|
|
|
return Err(From::from("foo"));
|
|
|
|
//~^ ERROR type annotations needed
|
2022-02-16 15:48:46 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn muh3() -> Result<(), impl std::fmt::Debug> {
|
2022-10-19 17:17:19 +02:00
|
|
|
Err(From::from("foo"))
|
|
|
|
//~^ ERROR type annotations needed
|
2022-02-16 15:48:46 +00:00
|
|
|
}
|
|
|
|
|
2022-02-17 13:28:06 +00:00
|
|
|
fn main() {}
|