subtest-impl 0.0.1

Implementation detail of the `subtest` crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
source: subtest-impl/tests/expand_impl.rs
expression: macro_output
input_file: subtest-impl/tests/expand_impl/parameter_inheritance.rs
---
fn parent(arg: i32, arg2: bool) {}
mod parent_subtests {
    use super::*;
    fn child(arg: i32, arg2: bool) {}
    mod child_subtests {
        use super::*;
        fn grandchild(arg: i32, arg2: bool) {}
    }
}