blob: e4dafc073ab3b9bc0c91407e3d7714d361ccc4f5 [file] [log] [blame]
// compile-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
/*
#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(){}