mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 20:00:43 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
#[cfg(FALSE)]
|
|
fn syntax() {
|
|
bar::<Item = 42>();
|
|
//~^ ERROR associated const equality is incomplete
|
|
bar::<Item = { 42 }>();
|
|
//~^ ERROR associated const equality is incomplete
|
|
}
|
|
|
|
fn main() {}
|