mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
14 lines
208 B
Rust
14 lines
208 B
Rust
//@ check-pass
|
|
#![expect(incomplete_features)]
|
|
#![feature(explicit_tail_calls, decl_macro)]
|
|
|
|
macro call($f:expr $(, $args:expr)* $(,)?) {
|
|
($f)($($args),*)
|
|
}
|
|
|
|
fn main() {
|
|
become call!(f);
|
|
}
|
|
|
|
fn f() {}
|