rust/src/test/ui/lint/force-warn/allowed-cli-deny-by-default-lint.stderr

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

24 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-06-02 10:25:24 -05:00
warning: any use of this value will cause an error
2021-08-18 04:05:59 -05:00
--> $DIR/allowed-cli-deny-by-default-lint.rs:6:16
2021-06-02 10:25:24 -05:00
|
LL | const C: i32 = 1 / 0;
2022-02-13 09:27:59 -06:00
| ------------ ^^^^^ attempt to divide `1_i32` by zero
2021-06-02 10:25:24 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-09-18 10:55:36 -05:00
= note: requested on the command line with `--force-warn const-err`
2021-06-02 10:25:24 -05:00
warning: 1 warning emitted
2022-06-04 18:25:43 -05:00
Future incompatibility report: Future breakage diagnostic:
warning: any use of this value will cause an error
--> $DIR/allowed-cli-deny-by-default-lint.rs:6:16
|
LL | const C: i32 = 1 / 0;
2022-02-13 09:27:59 -06:00
| ------------ ^^^^^ attempt to divide `1_i32` by zero
2022-06-04 18:25:43 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-09-18 10:55:36 -05:00
= note: requested on the command line with `--force-warn const-err`
2022-06-04 18:25:43 -05:00