mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 04:17:43 +00:00
14 lines
215 B
Rust
14 lines
215 B
Rust
// https://github.com/rust-lang/rust/issues/60926
|
|
#![crate_name = "foo"]
|
|
|
|
mod m1 {
|
|
pub mod m2 {
|
|
pub struct Foo;
|
|
}
|
|
}
|
|
|
|
pub use m1::*;
|
|
use crate::m1::m2;
|
|
|
|
//@ count foo/index.html '//a[@class="mod"]' 0
|