]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/issue-105946.rs
Rollup merge of #106788 - estebank:elaborate_pred_E0599, r=compiler-errors
[rust.git] / tests / ui / typeck / issue-105946.rs
1 fn digit() -> str {
2   return {};
3   //~^ ERROR: mismatched types [E0308]
4 }
5 fn main() {
6     let [_y..] = [box 1, box 2];
7     //~^ ERROR: cannot find value `_y` in this scope [E0425]
8     //~| ERROR: `X..` patterns in slices are experimental [E0658]
9     //~| ERROR: box expression syntax is experimental; you can call `Box::new` instead [E0658]
10     //~| ERROR: box expression syntax is experimental; you can call `Box::new` instead [E0658]
11     //~| ERROR: pattern requires 1 element but array has 2 [E0527]
12 }