mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
312 B
Rust
20 lines
312 B
Rust
// check-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(){}
|