-
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.
Improve parsing diagnostic for negative supertrait bounds
- Loading branch information
Showing
4 changed files
with
131 additions
and
21 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,14 @@ | ||
// run-rustfix | ||
|
||
trait Tr {} //~ ERROR negative trait bounds are not supported | ||
trait Tr2: SuperA {} //~ ERROR negative trait bounds are not supported | ||
trait Tr3: SuperB {} //~ ERROR negative trait bounds are not supported | ||
trait Tr4: SuperB + SuperD {} | ||
trait Tr5 {} | ||
|
||
trait SuperA {} | ||
trait SuperB {} | ||
trait SuperC {} | ||
trait SuperD {} | ||
|
||
fn main() {} |
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,16 @@ | ||
// run-rustfix | ||
|
||
trait Tr: !SuperA {} //~ ERROR negative trait bounds are not supported | ||
trait Tr2: SuperA + !SuperB {} //~ ERROR negative trait bounds are not supported | ||
trait Tr3: !SuperA + SuperB {} //~ ERROR negative trait bounds are not supported | ||
trait Tr4: !SuperA + SuperB //~ ERROR negative trait bounds are not supported | ||
+ !SuperC + SuperD {} | ||
trait Tr5: !SuperA //~ ERROR negative trait bounds are not supported | ||
+ !SuperB {} | ||
|
||
trait SuperA {} | ||
trait SuperB {} | ||
trait SuperC {} | ||
trait SuperD {} | ||
|
||
fn main() {} |
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,42 @@ | ||
error: negative trait bounds are not supported | ||
--> $DIR/issue-33418.rs:3:9 | ||
| | ||
LL | trait Tr: !SuperA {} //~ ERROR negative trait bounds are not supported | ||
| ^^^^^^^^^ help: remove the trait bound | ||
|
||
error: negative trait bounds are not supported | ||
--> $DIR/issue-33418.rs:4:19 | ||
| | ||
LL | trait Tr2: SuperA + !SuperB {} //~ ERROR negative trait bounds are not supported | ||
| ---------^^^^^^^^^ | ||
| | | ||
| help: remove the trait bound | ||
|
||
error: negative trait bounds are not supported | ||
--> $DIR/issue-33418.rs:5:10 | ||
| | ||
LL | trait Tr3: !SuperA + SuperB {} //~ ERROR negative trait bounds are not supported | ||
| ^^^^^^^^^--------- | ||
| | | ||
| help: remove the trait bound | ||
|
||
error: negative trait bounds are not supported | ||
--> $DIR/issue-33418.rs:6:10 | ||
| | ||
LL | trait Tr4: !SuperA + SuperB //~ ERROR negative trait bounds are not supported | ||
| __________-^^^^^^^^ | ||
LL | | + !SuperC + SuperD {} | ||
| |_____^^^^^^^^^________- help: remove the trait bounds | ||
|
||
error: negative trait bounds are not supported | ||
--> $DIR/issue-33418.rs:8:10 | ||
| | ||
LL | trait Tr5: !SuperA //~ ERROR negative trait bounds are not supported | ||
| __________-^^^^^^^^ | ||
LL | | + !SuperB {} | ||
| | ^^^^^^^^- | ||
| |_____________| | ||
| help: remove the trait bounds | ||
|
||
error: aborting due to 5 previous errors | ||
|