mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
17 lines
196 B
Rust
17 lines
196 B
Rust
//@ known-bug: #123456
|
|
|
|
trait Project {
|
|
const SELF: Self;
|
|
}
|
|
|
|
fn take1(
|
|
_: Project<
|
|
SELF = {
|
|
j2.join().unwrap();
|
|
},
|
|
>,
|
|
) {
|
|
}
|
|
|
|
pub fn main() {}
|