about summary refs log tree commit diff
path: root/tests/ui/macros/macro-method-issue-4621.rs
blob: a35eeb257dfbce024a08237431225e2c5f9c931f (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);
}