]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0121.rs
Rollup merge of #82259 - osa1:issue82156, r=petrochenkov
[rust.git] / src / test / ui / error-codes / E0121.rs
1 fn foo() -> _ { 5 } //~ ERROR E0121
2
3 static BAR: _ = "test"; //~ ERROR E0121
4
5 fn main() {
6 }