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

ices/57276.rs: fixed with errors #531

Merged
merged 1 commit into from
Oct 31, 2020
Merged

ices/57276.rs: fixed with errors #531

merged 1 commit into from
Oct 31, 2020

Conversation

github-actions[bot]
Copy link
Contributor

Issue: rust-lang/rust#57276

#![feature(arbitrary_self_types, dispatch_from_dyn)]

use std::ops::{Deref, DispatchFromDyn};

trait Trait<T: Deref<Target=Self> + DispatchFromDyn<T>> {
    fn foo(self: T) -> dyn Trait<T>;
}
=== stdout ===
=== stderr ===
error[E0601]: `main` function not found in crate `57276`
 --> /home/runner/work/glacier/glacier/ices/57276.rs:1:1
  |
1 | / #![feature(arbitrary_self_types, dispatch_from_dyn)]
2 | |
3 | | use std::ops::{Deref, DispatchFromDyn};
4 | |
5 | | trait Trait<T: Deref<Target=Self> + DispatchFromDyn<T>> {
6 | |     fn foo(self: T) -> dyn Trait<T>;
7 | | }
  | |_^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/57276.rs`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0601`.
==============

=== stdout ===
=== stderr ===
error[E0601]: `main` function not found in crate `57276`
 --> /home/runner/work/glacier/glacier/ices/57276.rs:1:1
  |
1 | / #![feature(arbitrary_self_types, dispatch_from_dyn)]
2 | |
3 | | use std::ops::{Deref, DispatchFromDyn};
4 | |
5 | | trait Trait<T: Deref<Target=Self> + DispatchFromDyn<T>> {
6 | |     fn foo(self: T) -> dyn Trait<T>;
7 | | }
  | |_^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/57276.rs`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0601`.
==============
@JohnTitor
Copy link
Member

JohnTitor commented Oct 31, 2020

Seems rust-lang/rust#78422 fixed it.

@JohnTitor JohnTitor merged commit 6d29b7d into master Oct 31, 2020
@JohnTitor JohnTitor deleted the autofix/ices/57276.rs branch October 31, 2020 12:24
@JohnTitor JohnTitor mentioned this pull request Nov 2, 2020
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