]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-18119.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-18119.rs
CommitLineData
c1a9b12d
SL
1const X: u8 = 1;
2static Y: u8 = 1;
3fn foo() {}
85aaf69f 4
c1a9b12d 5impl X {}
32a655c1 6//~^ ERROR expected type, found constant `X`
c1a9b12d 7impl Y {}
32a655c1 8//~^ ERROR expected type, found static `Y`
c1a9b12d 9impl foo {}
32a655c1 10//~^ ERROR expected type, found function `foo`
223e47cc 11
d9579d0f 12fn main() {}