aboutsummaryrefslogtreecommitdiff
path: root/mingling_pathf/test/src/test_files/test_help.rs
blob: 52d14081538633a3e29c1cdac834370a394fbe16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#[mingling::macros::help]
fn my_help1(prev: Some1) {
}

#[mingling::macros::help]
pub fn my_help2(prev: Some2) {
}

#[help]
fn my_help3(prev: Some3) {
}

#[help]
pub fn my_help4(prev: Some4) {
}

pub mod sub {
    #[mingling::macros::help]
    fn my_help1(prev: Some1) {
    }

    #[mingling::macros::help]
    pub fn my_help2(prev: Some2) {
    }

    #[help]
    fn my_help3(prev: Some3) {
    }

    #[help]
    pub fn my_help4(prev: Some4) {
    }
}