-
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.
coherence doesn't like region constraints
- Loading branch information
1 parent
1d99ddb
commit e1edefc
Showing
6 changed files
with
37 additions
and
3 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
11 changes: 11 additions & 0 deletions
11
tests/ui/coherence/coherence-negative-outlives-lifetimes.with_negative_coherence.stderr
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,11 @@ | ||
error[E0119]: conflicting implementations of trait `MyTrait<'_>` for type `&_` | ||
--> $DIR/coherence-negative-outlives-lifetimes.rs:14:1 | ||
| | ||
LL | impl<'a, T: MyPredicate<'a>> MyTrait<'a> for T {} | ||
| ---------------------------------------------- first implementation here | ||
LL | impl<'a, T> MyTrait<'a> for &'a T {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `&_` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0119`. |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// check-pass | ||
// known-bug: unknown | ||
|
||
#![feature(negative_impls)] | ||
#![feature(rustc_attrs)] | ||
|
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,11 @@ | ||
error[E0119]: conflicting implementations of trait `Bar` for type `&_` | ||
--> $DIR/coherence-overlap-with-regions.rs:20:1 | ||
| | ||
LL | impl<T: Foo> Bar for T {} | ||
| ---------------------- first implementation here | ||
LL | impl<T> Bar for &T where T: 'static {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `&_` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0119`. |
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
12 changes: 12 additions & 0 deletions
12
tests/ui/coherence/negative-coherence-considering-regions.static_lt.stderr
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,12 @@ | ||
error[E0119]: conflicting implementations of trait `Bar` for type `&'static _` | ||
--> $DIR/negative-coherence-considering-regions.rs:26:1 | ||
| | ||
LL | impl<T> Bar for T where T: Foo {} | ||
| ------------------------------ first implementation here | ||
... | ||
LL | impl<T> Bar for &'static T {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `&'static _` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0119`. |