]> git.proxmox.com Git - rustc.git/blob - tests/ui/error-codes/E0069.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / error-codes / E0069.rs
1 fn foo() -> u8 {
2 return;
3 //~^ ERROR `return;` in a function whose return type is not `()`
4 }
5
6 fn main() {
7 }