diff options
Diffstat (limited to 'src/test/compile-fail/rec-expected.rs')
| -rw-r--r-- | src/test/compile-fail/rec-expected.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/rec-expected.rs b/src/test/compile-fail/rec-expected.rs index acbb7f03531..1f69ffc7a4d 100644 --- a/src/test/compile-fail/rec-expected.rs +++ b/src/test/compile-fail/rec-expected.rs @@ -3,7 +3,7 @@ type bar = {b: int}; fn want_foo(f: foo) {} fn have_bar(b: bar) { - want_foo(b); //! ERROR expected a record with field `a` + want_foo(b); //~ ERROR expected a record with field `a` } fn main() {} \ No newline at end of file |
