]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/resolve/resolve-unknown-trait.stderr
Rollup merge of #97812 - TaKO8Ki:suggest-to-swap-struct-and-trait, r=estebank
[rust.git] / src / test / ui / resolve / resolve-unknown-trait.stderr
index 8a2d791654d2f58c5d1be6be5f28d6aa1ff3f342..e19cfe617d4f264cd98aef1736625a83d737974d 100644 (file)
@@ -1,26 +1,21 @@
 error[E0405]: cannot find trait `SomeNonExistentTrait` in this scope
-  --> $DIR/resolve-unknown-trait.rs:12:18
+  --> $DIR/resolve-unknown-trait.rs:1:18
    |
 LL | trait NewTrait : SomeNonExistentTrait {}
    |                  ^^^^^^^^^^^^^^^^^^^^ not found in this scope
 
 error[E0405]: cannot find trait `SomeNonExistentTrait` in this scope
-  --> $DIR/resolve-unknown-trait.rs:15:6
+  --> $DIR/resolve-unknown-trait.rs:4:6
    |
 LL | impl SomeNonExistentTrait for isize {}
    |      ^^^^^^^^^^^^^^^^^^^^ not found in this scope
 
 error[E0405]: cannot find trait `SomeNonExistentTrait` in this scope
-  --> $DIR/resolve-unknown-trait.rs:18:8
+  --> $DIR/resolve-unknown-trait.rs:7:8
    |
 LL | fn f<T:SomeNonExistentTrait>() {}
    |        ^^^^^^^^^^^^^^^^^^^^ not found in this scope
 
-error[E0601]: `main` function not found in crate `resolve_unknown_trait`
-   |
-   = note: consider adding a `main` function to `$DIR/resolve-unknown-trait.rs`
-
-error: aborting due to 4 previous errors
+error: aborting due to 3 previous errors
 
-Some errors occurred: E0405, E0601.
-For more information about an error, try `rustc --explain E0405`.
+For more information about this error, try `rustc --explain E0405`.