mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
14 lines
208 B
Rust
14 lines
208 B
Rust
pub mod foo {
|
|
pub mod bar {
|
|
pub struct A;
|
|
}
|
|
}
|
|
|
|
pub struct Foo {
|
|
a: Vec<foo::bar:A>,
|
|
//~^ ERROR path separator must be a double colon
|
|
//~| HELP use a double colon instead
|
|
}
|
|
|
|
fn main() {}
|