2022-11-16 21:46:06 +01:00
|
|
|
error: path separator must be a double colon
|
2022-03-11 15:26:19 -07:00
|
|
|
--> $DIR/single-colon-path-not-const-generics.rs:8:18
|
|
|
|
|
|
|
2025-04-24 02:19:02 +02:00
|
|
|
LL | pub struct Foo {
|
|
|
|
|
| --- while parsing this struct
|
2022-03-11 15:26:19 -07:00
|
|
|
LL | a: Vec<foo::bar:A>,
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^
|
2022-11-16 21:46:06 +01:00
|
|
|
|
|
2024-07-06 03:07:46 +00:00
|
|
|
help: use a double colon instead
|
|
|
|
|
|
|
|
|
|
|
LL | a: Vec<foo::bar::A>,
|
2025-04-24 02:19:02 +02:00
|
|
|
| +
|
2022-03-11 15:26:19 -07:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-03-11 15:26:19 -07:00
|
|
|
|