]> git.proxmox.com Git - rustc.git/blobdiff - tests/ui/error-codes/E0071.rs
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / error-codes / E0071.rs
index bd8469de75da0cf9855bf2bacf084693ba7b0c0b..678502ba328894cdd7033a02a02ae830105b60e8 100644 (file)
@@ -3,5 +3,5 @@ type FooAlias = Foo;
 
 fn main() {
     let u = FooAlias { value: 0 };
-    //~^ ERROR expected struct, variant or union type, found enum `Foo` [E0071]
+    //~^ ERROR expected struct, variant or union type, found `Foo` [E0071]
 }