-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ICE: generic const exprs: missing value for assoc item in impl
, expected fulfillment errors
#117153
Comments
The output used to be warning: the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes
--> <source>:1:12
|
1 | #![feature(generic_const_exprs)]
| ^^^^^^^^^^^^^^^^^^^
|
= note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information
= note: `#[warn(incomplete_features)]` on by default
error[E0046]: not all trait items implemented, missing: `ASSOC`
--> <source>:7:1
|
4 | const ASSOC: usize;
| ------------------ `ASSOC` from trait
...
7 | impl<const N: u64> Q for [u8; N] {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `ASSOC` in implementation
error[E0308]: mismatched types
--> <source>:9:20
|
9 | pub fn q_user() -> [u8; <[u8; 13] as Q>::ASSOC] {}
| ------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `[u8; <[u8; 13] as Q>::ASSOC]`, found `()`
| |
| implicitly returns `()` as its body has no tail or `return` expression
error[E0308]: mismatched types
--> <source>:7:31
|
7 | impl<const N: u64> Q for [u8; N] {}
| ^ expected `usize`, found `u64`
error: aborting due to 3 previous errors; 1 warning emitted
Some errors have detailed explanations: E0046, E0308.
For more information about an error, try `rustc --explain E0046`. meaning we now don't get to typeck anymore, because the |
Interestingly this only is a problem if there is no associated type on the |
Rollup merge of rust-lang#117159 - oli-obk:error_shenanigans, r=estebank Work around the fact that `check_mod_type_wf` may spuriously return `ErrorGuaranteed` Even if that error is only emitted by `check_mod_item_types`. fixes rust-lang#117153 A cleaner refactoring would merge/chain these queries in ways that ensure we only actually get an `ErrorGuaranteed` if there was an error emitted.
original:
Version information
Command:
/home/matthias/.rustup/toolchains/master/bin/rustc
Program output
The text was updated successfully, but these errors were encountered: