about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2016-04-12 13:33:28 -0700
committerDavid Tolnay <dtolnay@gmail.com>2016-04-12 13:49:54 -0700
commit3d50ad733229ecc9a8412cf372370aa0be1213d8 (patch)
treeab113f1e11d10450f353c4c002c66be17a09653a /src/libsyntax/parse/parser.rs
parenta4f781e47710d8c938130446bf4cd5e9be2231d2 (diff)
downloadrust-3d50ad733229ecc9a8412cf372370aa0be1213d8.tar.gz
rust-3d50ad733229ecc9a8412cf372370aa0be1213d8.zip
Bare raw pointers have been disallowed forever
This change was in 0.12.0, a year and a half ago. Let's move on!
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index c4997348537..183329ba474 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -1532,9 +1532,8 @@ impl<'a> Parser<'a> {
         } else {
             let span = self.last_span;
             self.span_err(span,
-                          "bare raw pointers are no longer allowed, you should \
-                           likely use `*mut T`, but otherwise `*T` is now \
-                           known as `*const T`");
+                          "bare raw pointers are not allowed, use `*mut T` or \
+                           `*const T` as appropriate");
             Mutability::Immutable
         };
         let t = self.parse_ty()?;