rust/tests/ui/associated-path-shl.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
932 B
Plaintext
Raw Normal View History

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
--> $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
error: aborting due to 5 previous errors
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0412`.