mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
Auto merge of #32915 - dtolnay:rawptr, r=nrc
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:
commit
5d5f4b5e3f
@ -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`");
|
||||
"expected mut or const in raw pointer type (use \
|
||||
`*mut T` or `*const T` as appropriate)");
|
||||
Mutability::Immutable
|
||||
};
|
||||
let t = self.parse_ty()?;
|
||||
|
15
src/test/parse-fail/bad-pointer-type.rs
Normal file
15
src/test/parse-fail/bad-pointer-type.rs
Normal file
@ -0,0 +1,15 @@
|
||||
// Copyright 2016 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 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// compile-flags: -Z parse-only
|
||||
|
||||
fn foo(_: *()) {
|
||||
//~^ expected mut or const in raw pointer type (use `*mut T` or `*const T` as appropriate)
|
||||
}
|
Loading…
Reference in New Issue
Block a user