mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 05:59:17 +00:00
18 lines
271 B
Rust
18 lines
271 B
Rust
//@ known-bug: #100041
|
|
|
|
pub trait WellUnformed {
|
|
type RequestNormalize;
|
|
}
|
|
|
|
impl<T: ?Sized> WellUnformed for T {
|
|
type RequestNormalize = ();
|
|
}
|
|
|
|
pub fn latent(_: &[<[[()]] as WellUnformed>::RequestNormalize; 0]) {}
|
|
|
|
pub fn bang() {
|
|
latent(&[]);
|
|
}
|
|
|
|
fn main() {}
|