Files
rust/tests/ui/fn/auxiliary/delegate_macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
101 B
Rust
Raw Normal View History

2025-05-02 21:28:11 +05:00
#[macro_export]
macro_rules! delegate {
($method:ident) => {
<Self>::$method(8)
};
}