summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0302.stderr
blob: 66b31361762d20468415e58b3a3ea4bfe97d841d (plain)
1
2
3
4
5
6
7
8
9
error[E0302]: cannot assign in a pattern guard
  --> $DIR/E0302.rs:4:21
   |
LL |         option if { option = None; false } => { }, //~ ERROR E0302
   |                     ^^^^^^^^^^^^^ assignment in pattern guard

error: aborting due to previous error

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