-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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: projection error while selecting? #25700
Labels
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Comments
The other error mentioned gives the backtrace below. Seems to be the same error as #25637 but I don't see any unsized types here which could cause it in this case.
|
Self-contained (for first error): struct S<T: 'static>(Option<&'static T>);
trait Tr { type Out; }
impl<T> Tr for T { type Out = T; }
impl<T: 'static> Copy for S<T> where S<T>: Tr<Out=T> {}
impl<T: 'static> Clone for S<T> where S<T>: Tr<Out=T> {
fn clone(&self) -> Self { *self }
}
fn main() {
let t = S::<()>(None);
drop(t);
drop(t);
} |
Minified for second issue: pub trait Parser {
type Input;
}
pub struct Iter<P: Parser>(P::Input);
pub struct Map<P, F>(P, F);
impl<P, F> Parser for Map<P, F> where F: FnMut(P) {
type Input = ();
}
trait AstId { type Untyped; }
impl AstId for u8 { type Untyped = u8; }
fn foo<P: Parser>(_: P, h: P::Input) {
Iter::<P>(h);
}
fn record_type<Id: AstId>(i: Id::Untyped) {
foo(Map(i, |_: Id::Untyped| { }), ())
}
pub fn main() {
record_type::<u8>(3);
} |
arielb1
added a commit
to arielb1/rust
that referenced
this issue
Jun 18, 2015
bors
added a commit
that referenced
this issue
Jun 18, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Got an ICE when compiling some code using parser-combinators, unfortunately I am not sure I can decouple the code from using the library so I uploaded a github repo with the file and cargo dependency needed here. Just run it with
cargo build
and it should ICE.Versions:
cargo 0.2.0-nightly (ac61996 2015-05-17) (built 2015-05-18)
rustc 1.2.0-nightly (0cc99f9 2015-05-17) (built 2015-05-18)
binary: rustc
commit-hash: 0cc99f9
commit-date: 2015-05-17
build-date: 2015-05-18
host: x86_64-pc-windows-gnu
release: 1.2.0-nightly
The text was updated successfully, but these errors were encountered: