about summary refs log tree commit diff
path: root/tests/ui/consts/packed_pattern.stderr
blob: 83bb3e5b6a7c32b16e5c8f6634c12a2dcf4ea227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
warning: unreachable pattern
  --> $DIR/packed_pattern.rs:16:9
   |
LL |         Foo { field: (5, 6, 7, 8) } => {},
   |         --------------------------- matches all the relevant values
LL |         FOO => unreachable!(),
   |         ^^^ no value can reach this
   |
   = note: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default

warning: 1 warning emitted