Bare raw pointers have been disallowed forever
This change was in 0.12.0, a year and a half ago. Let's move on!
This commit is contained in:
parent
a4f781e477
commit
3d50ad7332
2 changed files with 17 additions and 3 deletions
|
@ -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()?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue