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
2
refs/heads/master: 6dbb0e86aec11050480beb76eade6fb805010ba7
3
3
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
4
- refs/heads/try: 3d50ad733229ecc9a8412cf372370aa0be1213d8
4
+ refs/heads/try: 222f47a578887cf863bd51b508dbfe313cff2ab1
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
6
6
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
7
7
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
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