rust/tests/ui/track-diagnostics/track.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
964 B
Plaintext
Raw Normal View History

2022-10-18 22:08:20 +00:00
error[E0425]: cannot find value `rust` in this scope
2022-10-26 11:41:57 +00:00
--> $DIR/track.rs:LL:CC
2022-10-18 22:08:20 +00:00
|
LL | break rust
| ^^^^ not found in this scope
2022-10-26 11:41:57 +00:00
-Ztrack-diagnostics: created at compiler/rustc_resolve/src/late/diagnostics.rs:LL:CC
2022-10-18 22:08:20 +00:00
error[E0268]: `break` outside of a loop or labeled block
2022-10-26 11:41:57 +00:00
--> $DIR/track.rs:LL:CC
2022-10-18 22:08:20 +00:00
|
LL | break rust
| ^^^^^^^^^^ cannot `break` outside of a loop or labeled block
2022-10-31 15:14:29 +00:00
-Ztrack-diagnostics: created at compiler/rustc_passes/src/loops.rs:LL:CC
2022-10-18 22:08:20 +00:00
error: internal compiler error: It looks like you're trying to break rust; would you like some ICE?
note: the compiler expectedly panicked. this is a feature.
note: we would appreciate a joke overview: https://github.com/rust-lang/rust/issues/43162#issuecomment-320764675
2022-10-24 21:19:48 +00:00
note: rustc $VERSION running on $TARGET
2022-10-18 22:08:20 +00:00
error: aborting due to 3 previous errors
Some errors have detailed explanations: E0268, E0425.
For more information about an error, try `rustc --explain E0268`.