]> git.proxmox.com Git - rustc.git/blobdiff - tests/ui/typeck/issue-105946.rs
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / typeck / issue-105946.rs
index bf01751d5f6eeefb65e3e87765304c878d549783..f53f31138f811d0d8a7d26a7da0869f6699347bd 100644 (file)
@@ -1,12 +1,10 @@
 fn digit() -> str {
-  return {};
-  //~^ ERROR: mismatched types [E0308]
+    return {};
+    //~^ ERROR: mismatched types [E0308]
 }
 fn main() {
-    let [_y..] = [box 1, box 2];
+    let [_y..] = [Box::new(1), Box::new(2)];
     //~^ ERROR: cannot find value `_y` in this scope [E0425]
     //~| ERROR: `X..` patterns in slices are experimental [E0658]
-    //~| ERROR: box expression syntax is experimental; you can call `Box::new` instead [E0658]
-    //~| ERROR: box expression syntax is experimental; you can call `Box::new` instead [E0658]
     //~| ERROR: pattern requires 1 element but array has 2 [E0527]
 }