diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2019-11-13 14:16:56 -0800 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2019-11-18 11:02:22 -0800 |
| commit | 83ffda5216a9a4248221b980ee08c30ac6e517f8 (patch) | |
| tree | e176c52a39ce4554f0f769a25e627fa5b167c398 /src/test/ui/pattern/pattern-error-continue.rs | |
| parent | a0d40f8bdfcc3c28355467973f97fd4c45ac5876 (diff) | |
| download | rust-83ffda5216a9a4248221b980ee08c30ac6e517f8.tar.gz rust-83ffda5216a9a4248221b980ee08c30ac6e517f8.zip | |
Specific labels when referring to "expected" and "found" types
Diffstat (limited to 'src/test/ui/pattern/pattern-error-continue.rs')
| -rw-r--r-- | src/test/ui/pattern/pattern-error-continue.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/pattern/pattern-error-continue.rs b/src/test/ui/pattern/pattern-error-continue.rs index 79cc4b552a7..f21da3b55dc 100644 --- a/src/test/ui/pattern/pattern-error-continue.rs +++ b/src/test/ui/pattern/pattern-error-continue.rs @@ -21,9 +21,9 @@ fn main() { match 'c' { S { .. } => (), //~^ ERROR mismatched types - //~| expected type `char` - //~| found type `S` //~| expected char, found struct `S` + //~| expected type `char` + //~| found struct `S` _ => () } |
