]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0121.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[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() {}