1 2 3 4 5 6 7 8 9 10 11 12 13
// check-pass macro_rules! m { () => {{ fn f(_: impl Sized) {} f }} } fn main() { fn f() -> impl Sized {}; m!()(f()); }