mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-07 10:33:08 +00:00
21 lines
316 B
Rust
21 lines
316 B
Rust
pub fn main() {
|
|
|
|
return;
|
|
return ();
|
|
return as ();
|
|
return return as ();
|
|
return return return;
|
|
|
|
return if true {
|
|
()
|
|
} else {
|
|
()
|
|
};
|
|
|
|
loop {
|
|
return break as ();
|
|
}
|
|
|
|
return enum; //~ ERROR expected one of `;`, `}`, or an operator, found keyword `enum`
|
|
}
|