]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41255.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-41255.stderr
1 error: floating-point types cannot be used in patterns
2   --> $DIR/issue-41255.rs:10:9
3    |
4 LL |         5.0 => {}, //~ ERROR floating-point types cannot be used in patterns
5    |         ^^^
6    |
7 note: lint level defined here
8   --> $DIR/issue-41255.rs:5:11
9    |
10 LL | #![forbid(illegal_floating_point_literal_pattern)]
11    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
13    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
14
15 error: floating-point types cannot be used in patterns
16   --> $DIR/issue-41255.rs:12:9
17    |
18 LL |         5.0f32 => {}, //~ ERROR floating-point types cannot be used in patterns
19    |         ^^^^^^
20    |
21    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
22    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
23
24 error: floating-point types cannot be used in patterns
25   --> $DIR/issue-41255.rs:14:10
26    |
27 LL |         -5.0 => {}, //~ ERROR floating-point types cannot be used in patterns
28    |          ^^^
29    |
30    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
31    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
32
33 error: floating-point types cannot be used in patterns
34   --> $DIR/issue-41255.rs:16:9
35    |
36 LL |         1.0 .. 33.0 => {}, //~ ERROR floating-point types cannot be used in patterns
37    |         ^^^
38    |
39    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
40    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
41
42 error: floating-point types cannot be used in patterns
43   --> $DIR/issue-41255.rs:16:16
44    |
45 LL |         1.0 .. 33.0 => {}, //~ ERROR floating-point types cannot be used in patterns
46    |                ^^^^
47    |
48    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
49    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
50
51 error: floating-point types cannot be used in patterns
52   --> $DIR/issue-41255.rs:20:9
53    |
54 LL |         39.0 ..= 70.0 => {}, //~ ERROR floating-point types cannot be used in patterns
55    |         ^^^^
56    |
57    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
58    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
59
60 error: floating-point types cannot be used in patterns
61   --> $DIR/issue-41255.rs:20:18
62    |
63 LL |         39.0 ..= 70.0 => {}, //~ ERROR floating-point types cannot be used in patterns
64    |                  ^^^^
65    |
66    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
67    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
68
69 error: floating-point types cannot be used in patterns
70   --> $DIR/issue-41255.rs:29:10
71    |
72 LL |         (3.14, 1) => {}, //~ ERROR floating-point types cannot be used
73    |          ^^^^
74    |
75    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
76    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
77
78 error: floating-point types cannot be used in patterns
79   --> $DIR/issue-41255.rs:36:18
80    |
81 LL |         Foo { x: 2.0 } => {}, //~ ERROR floating-point types cannot be used
82    |                  ^^^
83    |
84    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
85    = note: for more information, see issue #41620 <https://github.com/rust-lang/rust/issues/41620>
86
87 error: aborting due to 9 previous errors
88