summary refs log tree commit diff
path: root/src/test/compile-fail/match-byte-array-patterns.rs
AgeCommit message (Collapse)AuthorLines
2018-03-20Stabilize slice patterns without `..`Vadim Petrochenkov-1/+1
Merge `feature(advanced_slice_patterns)` into `feature(slice_patterns)`
2017-01-03Make is_useful handle empty types properlyAndrew Cann-8/+1
2016-10-26handle mixed byte literal and byte array patternsAriel Ben-Yehuda-0/+73
Convert byte literal pattern to byte array patterns when they are both used together. so matching them is properly handled. I could've done the conversion eagerly, but that could have caused a bad worst-case for massive byte-array matches. Fixes #18027. Fixes #25051. Fixes #26510.