File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 3d50ad733229ecc9a8412cf372370aa0be1213d8
2
+ refs/heads/master: 222f47a578887cf863bd51b508dbfe313cff2ab1
3
3
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
4
4
refs/heads/try: 49312a405e14a449b98fe0056b12a40ac128be4a
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -1532,8 +1532,8 @@ impl<'a> Parser<'a> {
1532
1532
} else {
1533
1533
let span = self . last_span ;
1534
1534
self . span_err ( span,
1535
- "bare raw pointers are not allowed, use `*mut T` or \
1536
- `*const T` as appropriate") ;
1535
+ "expected mut or const in raw pointer type (use \
1536
+ `*mut T` or `* const T` as appropriate) ") ;
1537
1537
Mutability :: Immutable
1538
1538
} ;
1539
1539
let t = self . parse_ty ( ) ?;
Original file line number Diff line number Diff line change 11
11
// compile-flags: -Z parse-only
12
12
13
13
fn foo ( _: * ( ) ) {
14
- //~^ bare raw pointers are not allowed, use `*mut T` or `*const T` as appropriate
14
+ //~^ expected mut or const in raw pointer type ( use `*mut T` or `*const T` as appropriate)
15
15
}
You can’t perform that action at this time.
0 commit comments