rust/src/test/ui/issues/issue-8171-default-method-self-inherit-builtin-trait.rs
2018-12-25 21:08:33 -07:00

20 lines
314 B
Rust

// 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(){}