mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
304 B
Rust
13 lines
304 B
Rust
//@ pp-exact
|
|
#![feature(yeet_expr)]
|
|
|
|
fn yeet_no_expr() -> Option<String> { do yeet }
|
|
|
|
fn yeet_no_expr_with_semicolon() -> Option<String> { do yeet; }
|
|
|
|
fn yeet_with_expr() -> Result<String, i32> { do yeet 1 + 2 }
|
|
|
|
fn yeet_with_expr_with_semicolon() -> Result<String, i32> { do yeet 1 + 2; }
|
|
|
|
fn main() {}
|