Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
suggestions
/
do-not-attempt-to-add-suggestions-with-no-changes.rs
blob: d23cd94fd0a24d5bc7956b50c94e8a774c48b372 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2015
use
std
::
result
;
impl
result
{
//~ ERROR expected type, found module `result`
fn
into_future
()
->
Err
{}
//~ ERROR expected type, found variant `Err`
}
fn
main
()
{}