]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/associated-path-shl.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / associated-path-shl.stderr
index fa41d4abff482d18f5fa693cb2000d4a18d6cb96..3b62b1b01f48c97fb0f12985fafdfd3c98affa0d 100644 (file)
@@ -1,35 +1,35 @@
 error[E0412]: cannot find type `A` in this scope
-  --> $DIR/associated-path-shl.rs:14:14
+  --> $DIR/associated-path-shl.rs:4:14
    |
 LL |     let _: <<A>::B>::C; //~ ERROR cannot find type `A` in this scope
    |              ^ not found in this scope
 
 error[E0412]: cannot find type `A` in this scope
-  --> $DIR/associated-path-shl.rs:15:15
+  --> $DIR/associated-path-shl.rs:5:15
    |
 LL |     let _ = <<A>::B>::C; //~ ERROR cannot find type `A` in this scope
    |               ^ not found in this scope
 
 error[E0412]: cannot find type `A` in this scope
-  --> $DIR/associated-path-shl.rs:16:11
+  --> $DIR/associated-path-shl.rs:6:11
    |
 LL |     let <<A>::B>::C; //~ ERROR cannot find type `A` in this scope
    |           ^ not found in this scope
 
 error[E0412]: cannot find type `A` in this scope
-  --> $DIR/associated-path-shl.rs:17:17
+  --> $DIR/associated-path-shl.rs:7:17
    |
 LL |     let 0 ..= <<A>::B>::C; //~ ERROR cannot find type `A` in this scope
    |                 ^ not found in this scope
 
 error[E0412]: cannot find type `A` in this scope
-  --> $DIR/associated-path-shl.rs:19:7
+  --> $DIR/associated-path-shl.rs:9:7
    |
 LL |     <<A>::B>::C; //~ ERROR cannot find type `A` in this scope
    |       ^ not found in this scope
 
 error[E0029]: only char and numeric types are allowed in range patterns
-  --> $DIR/associated-path-shl.rs:17:15
+  --> $DIR/associated-path-shl.rs:7:15
    |
 LL |     let 0 ..= <<A>::B>::C; //~ ERROR cannot find type `A` in this scope
    |               ^^^^^^^^^^^ ranges require char or numeric types