We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
E0463
1 parent 8ad1d78 commit a4deb5aCopy full SHA for a4deb5a
tests/integration.rs
@@ -64,6 +64,9 @@ fn integration_test() {
64
} else if stderr.contains("query stack during panic") {
65
panic!("query stack during panic in the output");
66
} else if stderr.contains("E0463") {
67
+ // Encountering E0463 (can't find crate for `x`) did _not_ cause the build to fail in the
68
+ // past. Even though it should have. That's why we explicitly panic here.
69
+ // See PR #3552 and issue #3523 for more background.
70
panic!("error: E0463");
71
} else if stderr.contains("E0514") {
72
panic!("incompatible crate versions");
0 commit comments