mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
206 B
Rust
15 lines
206 B
Rust
// edition:2018
|
|
|
|
trait Test<T> {
|
|
fn is_some(self: T); //~ ERROR invalid `self` parameter type
|
|
}
|
|
|
|
async fn f() {
|
|
let x = Some(2);
|
|
if x.is_some() {
|
|
println!("Some");
|
|
}
|
|
}
|
|
|
|
fn main() {}
|