9 lines
164 B
Rust
9 lines
164 B
Rust
trait T {
|
|
fn f(&self, _: ()) {
|
|
None::<()>.map(Self::f);
|
|
}
|
|
//~^^ ERROR function is expected to take a single 0-tuple as argument
|
|
}
|
|
|
|
fn main() {}
|