2018-08-08 12:28:26 +00:00
|
|
|
error[E0412]: cannot find type `A` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/associated-path-shl.rs:4:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _: <<A>::B>::C;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `A` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/associated-path-shl.rs:5:15
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _ = <<A>::B>::C;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `A` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/associated-path-shl.rs:6:11
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let <<A>::B>::C;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `A` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/associated-path-shl.rs:7:17
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let 0 ..= <<A>::B>::C;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `A` in this scope
|
2019-07-24 02:01:38 +00:00
|
|
|
--> $DIR/associated-path-shl.rs:8:7
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | <<A>::B>::C;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^ not found in this scope
|
|
|
|
|
2019-07-24 02:01:38 +00:00
|
|
|
error: aborting due to 5 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-07-24 02:01:38 +00:00
|
|
|
For more information about this error, try `rustc --explain E0412`.
|