bless issue-72442

This commit is contained in:
csmoe 2020-05-22 10:12:03 +08:00
parent 7cdc897234
commit 16ba3e129d
2 changed files with 16 additions and 1 deletions
src/test/ui/async-await

View file

@ -1,4 +1,5 @@
// edition:2018
// compile-flags:-Cincremental=tmp/issue-72442
use std::fs::File;
use std::future::Future;
@ -9,7 +10,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
{
let path = std::path::Path::new(".");
let mut f = File::open(path.to_str())?;
//~^ ERROR the trait bound `std::option::Option<&str>: std::convert::AsRef<std::path::Path>` is not satisfied
//~^ ERROR the trait bound
let mut src = String::new();
f.read_to_string(&mut src)?;
Ok(())

View file

@ -0,0 +1,14 @@
error[E0277]: the trait bound `std::option::Option<&str>: std::convert::AsRef<std::path::Path>` is not satisfied
--> $DIR/issue-72442.rs:12:36
|
LL | let mut f = File::open(path.to_str())?;
| ^^^^^^^^^^^^^ the trait `std::convert::AsRef<std::path::Path>` is not implemented for `std::option::Option<&str>`
|
::: $SRC_DIR/libstd/fs.rs:LL:COL
|
LL | pub fn open<P: AsRef<Path>>(path: P) -> io::Result<File> {
| ----------- required by this bound in `std::fs::File::open`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.