diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2019-03-28 19:58:00 -0700 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2019-03-28 19:58:00 -0700 |
| commit | b7dc8e71ccb15ff54b9cdf0f67776cc3cf4bea33 (patch) | |
| tree | cc01de3bd43ed89c265073247e0a0733fc8d59ee /src/test | |
| parent | e3918cf62138157ef4748c2193e0601aaa78f311 (diff) | |
| download | rust-b7dc8e71ccb15ff54b9cdf0f67776cc3cf4bea33.tar.gz rust-b7dc8e71ccb15ff54b9cdf0f67776cc3cf4bea33.zip | |
fix text after rebase
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/parser/recover-from-bad-variant.stderr | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/parser/recover-from-bad-variant.stderr b/src/test/ui/parser/recover-from-bad-variant.stderr index bd4a562d72d..1eba6d7d528 100644 --- a/src/test/ui/parser/recover-from-bad-variant.stderr +++ b/src/test/ui/parser/recover-from-bad-variant.stderr @@ -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 |
