]> git.lizzy.rs Git - rust.git/blob - tests/ui/generics/single-colon-path-not-const-generics.rs
Rollup merge of #104965 - zacklukem:p-option-as_ref-docs, r=scottmcm
[rust.git] / tests / 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() {}