There was an error while loading. Please reload this page.
1 parent 9f06585 commit 6207559Copy full SHA for 6207559
tests/ui/duplicate-label-E0381-issue-129274.rs renamed to tests/ui/error-codes/E0381-duplicated-label.rs
@@ -1,3 +1,6 @@
1
+//! Regression test for duplicated label in E0381 error message.
2
+//!
3
+//! Issue: <https://github.com/rust-lang/rust/issues/129274>
4
fn main() {
5
fn test() {
6
loop {
tests/ui/duplicate-label-E0381-issue-129274.stderr renamed to tests/ui/error-codes/E0381-duplicated-label.stderr
@@ -1,5 +1,5 @@
error[E0381]: used binding `blah` is possibly-uninitialized
- --> $DIR/duplicate-label-E0381-issue-129274.rs:8:33
+ --> $DIR/E0381-duplicated-label.rs:11:33
|
LL | let blah: Option<String>;
| ---- binding declared here but left uninitialized
0 commit comments