test-token/teto_macros/tests/with_path.rs

11 lines
163 B
Rust
Raw Normal View History

2024-08-30 22:50:03 -07:00
pub mod a {
pub mod b {
pub mod c {
pub use teto::TestToken;
}
}
}
#[teto::test]
fn basic_test(_token: a::b::c::TestToken) {}