]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0121.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0121.rs
CommitLineData
3157f602
XL
1fn foo() -> _ { 5 } //~ ERROR E0121
2
3static BAR: _ = "test"; //~ ERROR E0121
a7813a04 4
136023e0 5fn main() {}