summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0408.stderr
blob: dc0a41e6eb0f8389d3b099dc5ab908b00e31c986 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0408]: variable `y` is not bound in all patterns
  --> $DIR/E0408.rs:5:19
   |
LL |         Some(y) | None => {} //~  ERROR variable `y` is not bound in all patterns
   |              -    ^^^^ pattern doesn't bind `y`
   |              |
   |              variable not in all patterns

error: aborting due to previous error

For more information about this error, try `rustc --explain E0408`.