rust/tests/ui/issues/issue-8171-default-method-s...

19 lines
281 B
Rust

//@ check-pass
#![allow(dead_code)]
/*
#8171 Self is not recognised as implementing kinds in default method implementations
*/
fn require_send<T: Send>(_: T){}
trait TragicallySelfIsNotSend: Send + Sized {
fn x(self) {
require_send(self);
}
}
pub fn main(){}