rust/tests/ui/match/issue-41255.stderr

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

116 lines
4.7 KiB
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:10:9
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | 5.0 => {},
2018-07-15 21:11:54 +00:00
| ^^^
|
2022-09-18 15:55:36 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:5:11
2018-07-15 21:11:54 +00:00
|
LL | #![forbid(illegal_floating_point_literal_pattern)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:12:9
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | 5.0f32 => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:14:10
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | -5.0 => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:16:9
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | 1.0 .. 33.0 => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:16:16
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | 1.0 .. 33.0 => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:20:9
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | 39.0 ..= 70.0 => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:20:18
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | 39.0 ..= 70.0 => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:25:11
|
LL | ..71.0 => {}
| ^^^^
|
= 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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:28:12
|
LL | ..=72.0 => {}
| ^^^^
|
= 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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:31:9
|
LL | 71.0.. => {}
| ^^^^
|
= 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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:39:10
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | (3.14, 1) => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: floating-point types cannot be used in patterns
2022-09-24 15:22:04 +00:00
--> $DIR/issue-41255.rs:46:18
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | Foo { x: 2.0 } => {},
2018-07-15 21:11:54 +00: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 #41620 <https://github.com/rust-lang/rust/issues/41620>
error: aborting due to 12 previous errors
2018-07-15 21:11:54 +00:00