forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ICE caused by ignoring EffectVars in type inference
Signed-off-by: Andrew Wock <ajwock@gmail.com>
- Loading branch information
Showing
5 changed files
with
98 additions
and
11 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
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
tests/ui/rfcs/rfc-2632-const-trait-impl/effects/spec-effectvar-ice.rs
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,24 @@ | ||
//@ check-fail | ||
// Fixes #119830 | ||
|
||
#![feature(effects)] | ||
#![feature(min_specialization)] | ||
#![feature(const_trait_impl)] | ||
|
||
trait Specialize {} | ||
|
||
trait Foo {} | ||
|
||
impl<T> const Foo for T {} | ||
//~^ error: const `impl` for trait `Foo` which is not marked with `#[const_trait]` | ||
//~| error: the const parameter `host` is not constrained by the impl trait, self type, or predicates [E0207] | ||
|
||
impl<T> const Foo for T where T: const Specialize {} | ||
//~^ error: const `impl` for trait `Foo` which is not marked with `#[const_trait]` | ||
//~| error: `const` can only be applied to `#[const_trait]` traits | ||
//~| error: the const parameter `host` is not constrained by the impl trait, self type, or predicates [E0207] | ||
//~| error: specialization impl does not specialize any associated items | ||
//~| error: could not resolve generic parameters on overridden impl | ||
|
||
fn main() { | ||
} |
69 changes: 69 additions & 0 deletions
69
tests/ui/rfcs/rfc-2632-const-trait-impl/effects/spec-effectvar-ice.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,69 @@ | ||
error: const `impl` for trait `Foo` which is not marked with `#[const_trait]` | ||
--> $DIR/spec-effectvar-ice.rs:12:15 | ||
| | ||
LL | trait Foo {} | ||
| - help: mark `Foo` as const: `#[const_trait]` | ||
LL | | ||
LL | impl<T> const Foo for T {} | ||
| ^^^ | ||
| | ||
= note: marking a trait with `#[const_trait]` ensures all default method bodies are `const` | ||
= note: adding a non-const method body in the future would be a breaking change | ||
|
||
error: const `impl` for trait `Foo` which is not marked with `#[const_trait]` | ||
--> $DIR/spec-effectvar-ice.rs:16:15 | ||
| | ||
LL | trait Foo {} | ||
| - help: mark `Foo` as const: `#[const_trait]` | ||
... | ||
LL | impl<T> const Foo for T where T: const Specialize {} | ||
| ^^^ | ||
| | ||
= note: marking a trait with `#[const_trait]` ensures all default method bodies are `const` | ||
= note: adding a non-const method body in the future would be a breaking change | ||
|
||
error: `const` can only be applied to `#[const_trait]` traits | ||
--> $DIR/spec-effectvar-ice.rs:16:40 | ||
| | ||
LL | impl<T> const Foo for T where T: const Specialize {} | ||
| ^^^^^^^^^^ | ||
|
||
error[E0207]: the const parameter `host` is not constrained by the impl trait, self type, or predicates | ||
--> $DIR/spec-effectvar-ice.rs:12:9 | ||
| | ||
LL | impl<T> const Foo for T {} | ||
| ^^^^^ unconstrained const parameter | ||
| | ||
= note: expressions using a const parameter must map each value to a distinct output value | ||
= note: proving the result of expressions other than the parameter are unique is not supported | ||
|
||
error[E0207]: the const parameter `host` is not constrained by the impl trait, self type, or predicates | ||
--> $DIR/spec-effectvar-ice.rs:16:9 | ||
| | ||
LL | impl<T> const Foo for T where T: const Specialize {} | ||
| ^^^^^ unconstrained const parameter | ||
| | ||
= note: expressions using a const parameter must map each value to a distinct output value | ||
= note: proving the result of expressions other than the parameter are unique is not supported | ||
|
||
error: specialization impl does not specialize any associated items | ||
--> $DIR/spec-effectvar-ice.rs:16:1 | ||
| | ||
LL | impl<T> const Foo for T where T: const Specialize {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
note: impl is a specialization of this impl | ||
--> $DIR/spec-effectvar-ice.rs:12:1 | ||
| | ||
LL | impl<T> const Foo for T {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: could not resolve generic parameters on overridden impl | ||
--> $DIR/spec-effectvar-ice.rs:16:1 | ||
| | ||
LL | impl<T> const Foo for T where T: const Specialize {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 7 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0207`. |