]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-6804.stderr
rustdoc: Remove unused Clean impls
[rust.git] / src / test / ui / issues / issue-6804.stderr
1 error: floating-point types cannot be used in patterns
2   --> $DIR/issue-6804.rs:11:9
3    |
4 LL |         NAN => {},
5    |         ^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/issue-6804.rs:4:9
9    |
10 LL | #![deny(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-6804.rs:19:10
17    |
18 LL |         [NAN, _] => {},
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-6804.rs:11:9
26    |
27 LL |         NAN => {},
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-6804.rs:19:10
35    |
36 LL |         [NAN, _] => {},
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: aborting due to 4 previous errors
43