diff options
| author | Jonas Hietala <tradet.h@gmail.com> | 2014-08-23 12:41:32 +0200 |
|---|---|---|
| committer | Jonas Hietala <tradet.h@gmail.com> | 2014-08-24 09:53:01 +0200 |
| commit | 9968ae255495704cb0c3fc1f43d2df2e84c20d5e (patch) | |
| tree | 9812a6ca9aa9325047cba5294fdc1dc5b5ff1e97 /src/test/compile-fail/mut-patterns.rs | |
| parent | 2e5aea65cd2594f19b9043d8df0e6461504cda9b (diff) | |
| download | rust-9968ae255495704cb0c3fc1f43d2df2e84c20d5e.tar.gz rust-9968ae255495704cb0c3fc1f43d2df2e84c20d5e.zip | |
Adjust the error messages to match the pattern "expected foo, found bar"
Closes #8492
Diffstat (limited to 'src/test/compile-fail/mut-patterns.rs')
| -rw-r--r-- | src/test/compile-fail/mut-patterns.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/mut-patterns.rs b/src/test/compile-fail/mut-patterns.rs index d9cdae4a499..a33a603f7f5 100644 --- a/src/test/compile-fail/mut-patterns.rs +++ b/src/test/compile-fail/mut-patterns.rs @@ -12,5 +12,5 @@ pub fn main() { struct Foo { x: int } - let mut Foo { x: x } = Foo { x: 3 }; //~ ERROR: expected `;` but found `{` + let mut Foo { x: x } = Foo { x: 3 }; //~ ERROR: expected `;`, found `{` } |
