subtest-impl 0.0.1

Implementation detail of the `subtest` crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
---
source: subtest-impl/tests/expand_impl.rs
expression: macro_output
input_file: subtest-impl/tests/expand_impl/async.rs
---
#[tokio::test]
async fn async_test() {}
mod async_test_subtests {
    use super::*;
    #[tokio::test]
    async fn nested() {}
}