blob: 8fb4e0855687d0f620f21d7c0963f969c7c051d0 [file] [log] [blame]
trait T {
fn f(&self, _: ()) {
None::<()>.map(Self::f);
}
//~^^ ERROR function is expected to take a single 0-tuple as argument
}
fn main() {}