-
Notifications
You must be signed in to change notification settings - Fork 13.4k
suggest Option::as_deref(_mut)
on type mismatch in option combinator if it passes typeck
#111659
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
fn produces_string() -> Option<String> { | ||
Some("my cool string".to_owned()) | ||
} | ||
|
||
fn takes_str_but_too_many_refs(_: &&str) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn no_args() -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn generic_ref<T>(_: &T) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
extern "C" fn takes_str_but_wrong_abi(_: &str) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
unsafe fn takes_str_but_unsafe(_: &str) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
struct TypeWithoutDeref; | ||
|
||
fn main() { | ||
let _ = produces_string().and_then(takes_str_but_too_many_refs); | ||
//~^ ERROR type mismatch in function arguments | ||
let _ = produces_string().and_then(takes_str_but_wrong_abi); | ||
//~^ ERROR expected a `FnOnce<(String,)>` closure, found `for<'a> extern "C" fn(&'a str) -> Option<()> {takes_str_but_wrong_abi}` | ||
let _ = produces_string().and_then(takes_str_but_unsafe); | ||
//~^ ERROR expected a `FnOnce<(String,)>` closure, found `for<'a> unsafe fn(&'a str) -> Option<()> {takes_str_but_unsafe}` | ||
let _ = produces_string().and_then(no_args); | ||
//~^ ERROR function is expected to take 1 argument, but it takes 0 arguments | ||
let _ = produces_string().and_then(generic_ref); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this case suggest There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I initially had it suggest
|
||
//~^ ERROR type mismatch in function arguments | ||
let _ = Some(TypeWithoutDeref).and_then(takes_str_but_too_many_refs); | ||
//~^ ERROR type mismatch in function arguments | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
error[E0631]: type mismatch in function arguments | ||
--> $DIR/suggest-option-asderef-unfixable.rs:28:40 | ||
| | ||
LL | fn takes_str_but_too_many_refs(_: &&str) -> Option<()> { | ||
| ------------------------------------------------------ found signature defined here | ||
... | ||
LL | let _ = produces_string().and_then(takes_str_but_too_many_refs); | ||
| -------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected due to this | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= note: expected function signature `fn(String) -> _` | ||
found function signature `for<'a, 'b> fn(&'a &'b str) -> _` | ||
note: required by a bound in `Option::<T>::and_then` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
|
||
error[E0277]: expected a `FnOnce<(String,)>` closure, found `for<'a> extern "C" fn(&'a str) -> Option<()> {takes_str_but_wrong_abi}` | ||
--> $DIR/suggest-option-asderef-unfixable.rs:30:40 | ||
| | ||
LL | let _ = produces_string().and_then(takes_str_but_wrong_abi); | ||
| -------- ^^^^^^^^^^^^^^^^^^^^^^^ expected an `FnOnce<(String,)>` closure, found `for<'a> extern "C" fn(&'a str) -> Option<()> {takes_str_but_wrong_abi}` | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= help: the trait `FnOnce<(String,)>` is not implemented for fn item `for<'a> extern "C" fn(&'a str) -> Option<()> {takes_str_but_wrong_abi}` | ||
note: required by a bound in `Option::<T>::and_then` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
|
||
error[E0277]: expected a `FnOnce<(String,)>` closure, found `for<'a> unsafe fn(&'a str) -> Option<()> {takes_str_but_unsafe}` | ||
--> $DIR/suggest-option-asderef-unfixable.rs:32:40 | ||
| | ||
LL | let _ = produces_string().and_then(takes_str_but_unsafe); | ||
| -------- ^^^^^^^^^^^^^^^^^^^^ call the function in a closure: `|| unsafe { /* code */ }` | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= help: the trait `FnOnce<(String,)>` is not implemented for fn item `for<'a> unsafe fn(&'a str) -> Option<()> {takes_str_but_unsafe}` | ||
= note: unsafe function cannot be called generically without an unsafe block | ||
note: required by a bound in `Option::<T>::and_then` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
|
||
error[E0593]: function is expected to take 1 argument, but it takes 0 arguments | ||
--> $DIR/suggest-option-asderef-unfixable.rs:34:40 | ||
| | ||
LL | fn no_args() -> Option<()> { | ||
| -------------------------- takes 0 arguments | ||
... | ||
LL | let _ = produces_string().and_then(no_args); | ||
| -------- ^^^^^^^ expected function that takes 1 argument | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
note: required by a bound in `Option::<T>::and_then` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
|
||
error[E0631]: type mismatch in function arguments | ||
--> $DIR/suggest-option-asderef-unfixable.rs:36:40 | ||
| | ||
LL | fn generic_ref<T>(_: &T) -> Option<()> { | ||
| -------------------------------------- found signature defined here | ||
... | ||
LL | let _ = produces_string().and_then(generic_ref); | ||
| -------- ^^^^^^^^^^^ expected due to this | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= note: expected function signature `fn(String) -> _` | ||
found function signature `for<'a> fn(&'a _) -> _` | ||
note: required by a bound in `Option::<T>::and_then` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
help: do not borrow the argument | ||
| | ||
LL - fn generic_ref<T>(_: &T) -> Option<()> { | ||
LL + fn generic_ref<T>(_: T) -> Option<()> { | ||
| | ||
|
||
error[E0631]: type mismatch in function arguments | ||
--> $DIR/suggest-option-asderef-unfixable.rs:38:45 | ||
| | ||
LL | fn takes_str_but_too_many_refs(_: &&str) -> Option<()> { | ||
| ------------------------------------------------------ found signature defined here | ||
... | ||
LL | let _ = Some(TypeWithoutDeref).and_then(takes_str_but_too_many_refs); | ||
| -------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected due to this | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= note: expected function signature `fn(TypeWithoutDeref) -> _` | ||
found function signature `for<'a, 'b> fn(&'a &'b str) -> _` | ||
note: required by a bound in `Option::<T>::and_then` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
|
||
error: aborting due to 6 previous errors | ||
|
||
Some errors have detailed explanations: E0277, E0593, E0631. | ||
For more information about an error, try `rustc --explain E0277`. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// run-rustfix | ||
|
||
fn produces_string() -> Option<String> { | ||
Some("my cool string".to_owned()) | ||
} | ||
|
||
fn takes_str(_: &str) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn takes_str_mut(_: &mut str) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn generic<T>(_: T) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn main() { | ||
let _: Option<()> = produces_string().as_deref().and_then(takes_str); | ||
//~^ ERROR type mismatch in function arguments | ||
//~| HELP call `Option::as_deref()` first | ||
let _: Option<Option<()>> = produces_string().as_deref().map(takes_str); | ||
//~^ ERROR type mismatch in function arguments | ||
//~| HELP call `Option::as_deref()` first | ||
let _: Option<Option<()>> = produces_string().as_deref_mut().map(takes_str_mut); | ||
//~^ ERROR type mismatch in function arguments | ||
//~| HELP call `Option::as_deref_mut()` first | ||
let _ = produces_string().and_then(generic); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// run-rustfix | ||
|
||
fn produces_string() -> Option<String> { | ||
Some("my cool string".to_owned()) | ||
} | ||
|
||
fn takes_str(_: &str) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn takes_str_mut(_: &mut str) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn generic<T>(_: T) -> Option<()> { | ||
Some(()) | ||
} | ||
|
||
fn main() { | ||
let _: Option<()> = produces_string().and_then(takes_str); | ||
//~^ ERROR type mismatch in function arguments | ||
//~| HELP call `Option::as_deref()` first | ||
let _: Option<Option<()>> = produces_string().map(takes_str); | ||
//~^ ERROR type mismatch in function arguments | ||
//~| HELP call `Option::as_deref()` first | ||
let _: Option<Option<()>> = produces_string().map(takes_str_mut); | ||
//~^ ERROR type mismatch in function arguments | ||
//~| HELP call `Option::as_deref_mut()` first | ||
let _ = produces_string().and_then(generic); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
error[E0631]: type mismatch in function arguments | ||
--> $DIR/suggest-option-asderef.rs:20:52 | ||
| | ||
LL | fn takes_str(_: &str) -> Option<()> { | ||
| ----------------------------------- found signature defined here | ||
... | ||
LL | let _: Option<()> = produces_string().and_then(takes_str); | ||
| -------- ^^^^^^^^^ expected due to this | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= note: expected function signature `fn(String) -> _` | ||
found function signature `for<'a> fn(&'a str) -> _` | ||
note: required by a bound in `Option::<T>::and_then` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
help: call `Option::as_deref()` first | ||
| | ||
LL | let _: Option<()> = produces_string().as_deref().and_then(takes_str); | ||
| +++++++++++ | ||
|
||
error[E0631]: type mismatch in function arguments | ||
--> $DIR/suggest-option-asderef.rs:23:55 | ||
| | ||
LL | fn takes_str(_: &str) -> Option<()> { | ||
| ----------------------------------- found signature defined here | ||
... | ||
LL | let _: Option<Option<()>> = produces_string().map(takes_str); | ||
| --- ^^^^^^^^^ expected due to this | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= note: expected function signature `fn(String) -> _` | ||
found function signature `for<'a> fn(&'a str) -> _` | ||
note: required by a bound in `Option::<T>::map` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
help: call `Option::as_deref()` first | ||
| | ||
LL | let _: Option<Option<()>> = produces_string().as_deref().map(takes_str); | ||
| +++++++++++ | ||
|
||
error[E0631]: type mismatch in function arguments | ||
--> $DIR/suggest-option-asderef.rs:26:55 | ||
| | ||
LL | fn takes_str_mut(_: &mut str) -> Option<()> { | ||
| ------------------------------------------- found signature defined here | ||
... | ||
LL | let _: Option<Option<()>> = produces_string().map(takes_str_mut); | ||
| --- ^^^^^^^^^^^^^ expected due to this | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= note: expected function signature `fn(String) -> _` | ||
found function signature `for<'a> fn(&'a mut str) -> _` | ||
note: required by a bound in `Option::<T>::map` | ||
--> $SRC_DIR/core/src/option.rs:LL:COL | ||
help: call `Option::as_deref_mut()` first | ||
| | ||
LL | let _: Option<Option<()>> = produces_string().as_deref_mut().map(takes_str_mut); | ||
| +++++++++++++++ | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0631`. |
Uh oh!
There was an error while loading. Please reload this page.