forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ICE on invalid const param types
- Loading branch information
Showing
4 changed files
with
49 additions
and
6 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 was deleted.
Oops, something went wrong.
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,9 @@ | ||
const fn concat_strs<const A: &'static str>() -> &'static str { | ||
//~^ ERROR &'static str` is forbidden as the type of a const generic parameter | ||
struct Inner<const A: &'static str>; | ||
//~^ ERROR &'static str` is forbidden as the type of a const generic parameter | ||
Inner::concat_strs::<"a">::A | ||
//~^ ERROR ambiguous associated type | ||
} | ||
|
||
pub 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,38 @@ | ||
error: `&'static str` is forbidden as the type of a const generic parameter | ||
--> $DIR/ice-unexpected-region-123863.rs:1:31 | ||
| | ||
LL | const fn concat_strs<const A: &'static str>() -> &'static str { | ||
| ^^^^^^^^^^^^ | ||
| | ||
= note: the only supported types are integers, `bool` and `char` | ||
help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types | ||
| | ||
LL + #![feature(adt_const_params)] | ||
| | ||
|
||
error: `&'static str` is forbidden as the type of a const generic parameter | ||
--> $DIR/ice-unexpected-region-123863.rs:3:27 | ||
| | ||
LL | struct Inner<const A: &'static str>; | ||
| ^^^^^^^^^^^^ | ||
| | ||
= note: the only supported types are integers, `bool` and `char` | ||
help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types | ||
| | ||
LL + #![feature(adt_const_params)] | ||
| | ||
|
||
error[E0223]: ambiguous associated type | ||
--> $DIR/ice-unexpected-region-123863.rs:5:5 | ||
| | ||
LL | Inner::concat_strs::<"a">::A | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: if there were a trait named `Example` with associated type `concat_strs` implemented for `Inner<_>`, you could use the fully-qualified path | ||
| | ||
LL | <Inner<_> as Example>::concat_strs::A | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0223`. |