test-token/teto_macros/tests/with_path.rs
2024-08-31 11:30:32 -07:00

10 lines
163 B
Rust

pub mod a {
pub mod b {
pub mod c {
pub use teto::TestToken;
}
}
}
#[teto::test]
fn basic_test(_token: a::b::c::TestToken) {}