]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generics/single-colon-path-not-const-generics.rs
Auto merge of #96711 - emilio:inline-slice-clone, r=nikic
[rust.git] / src / test / ui / generics / single-colon-path-not-const-generics.rs
1 pub mod foo {
2     pub mod bar {
3         pub struct A;
4     }
5 }
6
7 pub struct Foo {
8   a: Vec<foo::bar:A>,
9   //~^ ERROR expected
10   //~| HELP path separator
11 }
12
13 fn main() {}