blob: c899f11b7240e57a896e3965d6f82eb37ea6f547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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() {}
|