mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 07:16:31 +00:00
11 lines
218 B
Rust
11 lines
218 B
Rust
trait Trait {
|
|
const ASSOC: i32;
|
|
}
|
|
|
|
impl Trait for () {
|
|
const ASSOC: &dyn Fn(_) = 1i32;
|
|
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for associated constants
|
|
}
|
|
|
|
fn main() {}
|