]> git.proxmox.com Git - rustc.git/blame - src/test/ui/associated-consts/associated-const-no-item.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / associated-consts / associated-const-no-item.rs
CommitLineData
85aaf69f 1trait Foo {
9cc50fc6 2 const ID: i32;
85aaf69f 3}
223e47cc 4
9cc50fc6 5const X: i32 = <i32>::ID;
dfeec247 6//~^ ERROR no associated item named `ID` found
223e47cc 7
9cc50fc6
SL
8fn main() {
9 assert_eq!(1, X);
10}