rust/tests/ui/explicit-tail-calls/become-outside.rs
2023-06-26 08:56:32 +00:00

16 lines
339 B
Rust

// revisions: constant array
#![allow(incomplete_features)]
#![feature(explicit_tail_calls)]
#[cfg(constant)]
const _: () = {
become f(); //[constant]~ error: become statement outside of function body
};
#[cfg(array)]
struct Bad([(); become f()]); //[array]~ error: become statement outside of function body
fn f() {}
fn main() {}