mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-02 16:19:21 +00:00
14 lines
154 B
Rust
14 lines
154 B
Rust
// check-pass
|
|
|
|
macro_rules! m {
|
|
() => {{
|
|
fn f(_: impl Sized) {}
|
|
f
|
|
}}
|
|
}
|
|
|
|
fn main() {
|
|
fn f() -> impl Sized {};
|
|
m!()(f());
|
|
}
|