diff options
| author | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2019-12-23 01:24:11 +0100 |
|---|---|---|
| committer | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2019-12-23 01:24:11 +0100 |
| commit | 056dff5748270249d81a03b355bc7ddd8da7f900 (patch) | |
| tree | a7db117700a6bd9bf5c07f61aa87a397602c6a7c /src/test | |
| parent | fc5deca2143a448d10a1241a777275e59448c94d (diff) | |
Fix ICE in mir interpretation
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/consts/const_prop_slice_pat_ice.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/consts/const_prop_slice_pat_ice.rs b/src/test/ui/consts/const_prop_slice_pat_ice.rs new file mode 100644 index 00000000000..5fec36e44bd --- /dev/null +++ b/src/test/ui/consts/const_prop_slice_pat_ice.rs @@ -0,0 +1,9 @@ +// check-pass +#![feature(slice_patterns)] + +fn main() { + match &[0, 1] as &[i32] { + [a @ .., x] => {} + &[] => {} + } +} |
