Skip to content

E0426 needs to be updated to new format #35799

@sophiajt

Description

@sophiajt
Contributor

From: src/test/compile-fail/E0426.rs

E0426 needs a span_label, updating it from:

error[E0426]: use of undeclared label `'a`
  --> src/test/compile-fail/E0426.rs:13:15
   |
13 |         break 'a; //~ ERROR E0426
   |               ^^

To:

error[E0426]: use of undeclared label `'a`
  --> src/test/compile-fail/E0426.rs:13:15
   |
13 |         break 'a; //~ ERROR E0426
   |               ^^ undeclared label

Activity

added a commit that references this issue on Aug 22, 2016
added 2 commits that reference this issue on Aug 22, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    A-diagnosticsArea: Messages for errors, warnings, and lints

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @sophiajt@bstrie

        Issue actions

          E0426 needs to be updated to new format · Issue #35799 · rust-lang/rust