-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle incorrect and ambiguous use of pin sugar better
- Loading branch information
Showing
6 changed files
with
60 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
//@ check-pass | ||
#![feature(pin_ergonomics)] | ||
#![allow(dead_code, incomplete_features)] | ||
|
||
// Handle the case where there's ambiguity between pin as a contextual keyword and pin as a path. | ||
|
||
struct Foo; | ||
|
||
mod pin { | ||
pub struct Foo; | ||
} | ||
|
||
fn main() { | ||
let _x: &pin ::Foo = &pin::Foo; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#![feature(pin_ergonomics)] | ||
#![allow(incomplete_features)] | ||
|
||
// Makes sure we don't accidentally accept `&pin Foo` without the `const` keyword. | ||
|
||
fn main() { | ||
let _x: &pin i32 = todo!(); //~ ERROR found `i32` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
error: expected one of `!`, `(`, `::`, `;`, `<`, or `=`, found `i32` | ||
--> $DIR/pin-sugar-no-const.rs:7:18 | ||
| | ||
LL | let _x: &pin i32 = todo!(); | ||
| - ^^^ expected one of `!`, `(`, `::`, `;`, `<`, or `=` | ||
| | | ||
| while parsing the type for `_x` | ||
| | ||
help: there is a keyword `in` with a similar name | ||
| | ||
LL | let _x: &in i32 = todo!(); | ||
| ~~ | ||
|
||
error: aborting due to 1 previous error | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters