summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/macro-method-issue-4621.rs
blob: 342fad5f62e88636021847ba716f3964bbe5ad36 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass

struct A;

macro_rules! make_thirteen_method {() => (fn thirteen(&self)->isize {13})}
impl A { make_thirteen_method!(); }

fn main() {
    assert_eq!(A.thirteen(),13);
}