mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 15:57:29 +00:00
11 lines
144 B
Rust
11 lines
144 B
Rust
trait Foo {
|
|
const ID: i32;
|
|
}
|
|
|
|
const X: i32 = <i32>::ID;
|
|
//~^ ERROR no associated item named `ID` found
|
|
|
|
fn main() {
|
|
assert_eq!(1, X);
|
|
}
|