From 1fcb7ed9a67f316344b0b39e7682dceb1a61cf3e Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Thu, 15 Aug 2013 17:58:56 -0700 Subject: Fix error message when trait method ends with wrong token When parsing a trait function, the function must end with either `;` or `{` (signifying a default implementation). The error message incorrectly stated that it must be `;` or `}`. Fixes #6610. --- src/libsyntax/parse/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libsyntax/parse/parser.rs') diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index b38de31c56a..b513e65adb6 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -953,7 +953,7 @@ impl Parser { _ => { p.fatal( fmt!( - "expected `;` or `}` but found `%s`", + "expected `;` or `{` but found `%s`", self.this_token_to_str() ) ); -- cgit 1.4.1-3-g733a5