mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
6 lines
169 B
Rust
6 lines
169 B
Rust
use std::result;
|
|
impl result { //~ ERROR expected type, found module `result`
|
|
fn into_future() -> Err {} //~ ERROR expected type, found variant `Err`
|
|
}
|
|
fn main() {}
|