From 1fcb7ed9a67f316344b0b39e7682dceb1a61cf3e Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Thu, 15 Aug 2013 17:58:56 -0700 Subject: [PATCH] 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 +- src/test/compile-fail/issue-6610.rs | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/test/compile-fail/issue-6610.rs diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index b38de31c56a7f..b513e65adb6da 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() ) ); diff --git a/src/test/compile-fail/issue-6610.rs b/src/test/compile-fail/issue-6610.rs new file mode 100644 index 0000000000000..f90833a852b13 --- /dev/null +++ b/src/test/compile-fail/issue-6610.rs @@ -0,0 +1,13 @@ +// Copyright 2013 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +trait Foo { fn a() } //~ ERROR expected `;` or `{` but found `}` + +fn main() {}