summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2008-non-exhaustive/omitted-patterns-dont-lint-on-arm.lint.stderr
blob: 9192c66143cc45c43355a804a6c0991cbc9ea0f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
error: some variants are not matched explicitly
  --> $DIR/omitted-patterns-dont-lint-on-arm.rs:15:11
   |
LL |     match val {
   |           ^^^ pattern `NonExhaustiveEnum::Struct { .. }` not covered
   |
   = help: ensure that all variants are matched explicitly by adding the suggested match arms
   = note: the matched value is of type `NonExhaustiveEnum` and the `non_exhaustive_omitted_patterns` attribute was found
note: the lint level is defined here
  --> $DIR/omitted-patterns-dont-lint-on-arm.rs:14:12
   |
LL |     #[deny(non_exhaustive_omitted_patterns)]
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: some variants are not matched explicitly
  --> $DIR/omitted-patterns-dont-lint-on-arm.rs:23:11
   |
LL |     match val {
   |           ^^^ pattern `NonExhaustiveEnum::Struct { .. }` not covered
   |
   = help: ensure that all variants are matched explicitly by adding the suggested match arms
   = note: the matched value is of type `NonExhaustiveEnum` and the `non_exhaustive_omitted_patterns` attribute was found
note: the lint level is defined here
  --> $DIR/omitted-patterns-dont-lint-on-arm.rs:22:27
   |
LL |     #[cfg_attr(lint, deny(non_exhaustive_omitted_patterns))]
   |                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

warning: the lint level must be set on the whole match
  --> $DIR/omitted-patterns-dont-lint-on-arm.rs:34:9
   |
LL |         #[deny(non_exhaustive_omitted_patterns)]
   |                ------------------------------- remove this attribute
LL |         _ => {}
   |         ^
   |
   = help: it no longer has any effect to set the lint level on an individual match arm
help: set the lint level on the whole match
   |
LL +     #[deny(non_exhaustive_omitted_patterns)]
LL |     match val {
   |

warning: the lint level must be set on the whole match
  --> $DIR/omitted-patterns-dont-lint-on-arm.rs:42:9
   |
LL |         #[cfg_attr(lint, deny(non_exhaustive_omitted_patterns))]
   |                               ------------------------------- remove this attribute
LL |         _ => {}
   |         ^
   |
   = help: it no longer has any effect to set the lint level on an individual match arm
help: set the lint level on the whole match
   |
LL +     #[deny(non_exhaustive_omitted_patterns)]
LL |     match val {
   |

warning: the lint level must be set on the whole match
  --> $DIR/omitted-patterns-dont-lint-on-arm.rs:50:9
   |
LL |         #[cfg_attr(lint, warn(non_exhaustive_omitted_patterns))]
   |                               ------------------------------- remove this attribute
LL |         _ => {}
   |         ^
   |
   = help: it no longer has any effect to set the lint level on an individual match arm
help: set the lint level on the whole match
   |
LL +     #[warn(non_exhaustive_omitted_patterns)]
LL |     match val {
   |

error: aborting due to 2 previous errors; 3 warnings emitted