]> git.lizzy.rs Git - rust.git/commitdiff
fix text after rebase
authorEsteban Küber <esteban@kuber.com.ar>
Fri, 29 Mar 2019 02:58:00 +0000 (19:58 -0700)
committerEsteban Küber <esteban@kuber.com.ar>
Fri, 29 Mar 2019 02:58:00 +0000 (19:58 -0700)
src/test/ui/parser/recover-from-bad-variant.stderr

index bd4a562d72d1948ae7600164185e5a673243c8c0..1eba6d7d52877fa80ff1dc22e06aad06e3794433 100644 (file)
@@ -3,6 +3,14 @@ error: expected type, found `3`
    |
 LL |     let x = Enum::Foo(a: 3, b: 4);
    |                          ^ expecting a type here because of type ascription
+   |
+   = note: type ascription is a nightly-only feature that lets you annotate an expression with a type: `<expr>: <type>`
+note: this expression expects an ascribed type after the colon
+  --> $DIR/recover-from-bad-variant.rs:7:23
+   |
+LL |     let x = Enum::Foo(a: 3, b: 4);
+   |                       ^
+   = help: this might be indicative of a syntax error elsewhere
 
 error[E0532]: expected tuple struct/variant, found struct variant `Enum::Foo`
   --> $DIR/recover-from-bad-variant.rs:10:9