mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 14:07:10 +00:00
7 lines
108 B
Rust
7 lines
108 B
Rust
//@ known-bug: #123140
|
|
trait Project {
|
|
const SELF: Self;
|
|
}
|
|
|
|
fn take1(_: Project<SELF = { loop {} }>) {}
|