mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
235 B
Rust
10 lines
235 B
Rust
// compile-flags: --edition 2018
|
|
|
|
pub fn demo() -> Option<i32> {
|
|
do yeet //~ ERROR `do yeet` expression is experimental
|
|
}
|
|
|
|
pub fn main() -> Result<(), String> {
|
|
do yeet "hello"; //~ ERROR `do yeet` expression is experimental
|
|
}
|