From 222f47a578887cf863bd51b508dbfe313cff2ab1 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 14 Apr 2016 09:46:27 -0700 Subject: Improve message for raw pointer missing mut and const "Bare raw pointer" does not exist as a concept. --- src/libsyntax/parse/parser.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libsyntax/parse') diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 183329ba474..f41aa835a75 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1532,8 +1532,8 @@ impl<'a> Parser<'a> { } else { let span = self.last_span; self.span_err(span, - "bare raw pointers are not allowed, use `*mut T` or \ - `*const T` as appropriate"); + "expected mut or const in raw pointer type (use \ + `*mut T` or `*const T` as appropriate)"); Mutability::Immutable }; let t = self.parse_ty()?; -- cgit 1.4.1-3-g733a5