Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

ices/95023.rs: fixed with errors #1179

Merged
merged 1 commit into from
Mar 22, 2022
Merged

ices/95023.rs: fixed with errors #1179

merged 1 commit into from
Mar 22, 2022

Conversation

github-actions[bot]
Copy link
Contributor

Issue: rust-lang/rust#95023

struct ErrorKind;
struct Error(ErrorKind);
impl Fn(&isize) for Error {
    fn foo<const N: usize>(&self) -> Self::B<{N}>;
}
fn main() {}
=== stdout ===
=== stderr ===
error: associated function in `impl` without body
 --> /home/runner/work/glacier/glacier/ices/95023.rs:4:5
  |
4 |     fn foo<const N: usize>(&self) -> Self::B<{N}>;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
  |                                                  |
  |                                                  help: provide a definition for the function: `{ <body> }`

error[E0407]: method `foo` is not a member of trait `Fn`
 --> /home/runner/work/glacier/glacier/ices/95023.rs:4:5
  |
4 |     fn foo<const N: usize>(&self) -> Self::B<{N}>;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a member of trait `Fn`

error[E0183]: manual implementations of `Fn` are experimental
 --> /home/runner/work/glacier/glacier/ices/95023.rs:3:6
  |
3 | impl Fn(&isize) for Error {
  |      ^^^^^^^^^^ manual implementations of `Fn` are experimental
  |
  = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable

error[E0229]: associated type bindings are not allowed here
 --> /home/runner/work/glacier/glacier/ices/95023.rs:3:6
  |
3 | impl Fn(&isize) for Error {
  |      ^^^^^^^^^^ associated type not allowed here

error[E0220]: associated type `B` not found for `Self`
 --> /home/runner/work/glacier/glacier/ices/95023.rs:4:44
  |
4 |     fn foo<const N: usize>(&self) -> Self::B<{N}>;
  |                                            ^ associated type `B` not found

error: aborting due to 5 previous errors

Some errors have detailed explanations: E0183, E0220, E0229, E0407.
For more information about an error, try `rustc --explain E0183`.
==============

=== stdout ===
=== stderr ===
error: associated function in `impl` without body
 --> /home/runner/work/glacier/glacier/ices/95023.rs:4:5
  |
4 |     fn foo<const N: usize>(&self) -> Self::B<{N}>;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
  |                                                  |
  |                                                  help: provide a definition for the function: `{ <body> }`

error[E0407]: method `foo` is not a member of trait `Fn`
 --> /home/runner/work/glacier/glacier/ices/95023.rs:4:5
  |
4 |     fn foo<const N: usize>(&self) -> Self::B<{N}>;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a member of trait `Fn`

error[E0183]: manual implementations of `Fn` are experimental
 --> /home/runner/work/glacier/glacier/ices/95023.rs:3:6
  |
3 | impl Fn(&isize) for Error {
  |      ^^^^^^^^^^ manual implementations of `Fn` are experimental
  |
  = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable

error[E0229]: associated type bindings are not allowed here
 --> /home/runner/work/glacier/glacier/ices/95023.rs:3:6
  |
3 | impl Fn(&isize) for Error {
  |      ^^^^^^^^^^ associated type not allowed here

error[E0220]: associated type `B` not found for `Self`
 --> /home/runner/work/glacier/glacier/ices/95023.rs:4:44
  |
4 |     fn foo<const N: usize>(&self) -> Self::B<{N}>;
  |                                            ^ associated type `B` not found

error: aborting due to 5 previous errors

Some errors have detailed explanations: E0183, E0220, E0229, E0407.
For more information about an error, try `rustc --explain E0183`.
==============
@Alexendoo Alexendoo merged commit c145c96 into master Mar 22, 2022
@Alexendoo Alexendoo deleted the autofix/ices/95023.rs branch March 22, 2022 12:18
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants