We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code causes an internal compiler error:
fn foo<T>() { let _x: Bar<T> = Bar{ arr: &[] }; } struct Bar<T> { arr: &[T], } fn test_foo() { foo::<()>(); }
Switching the &[T] to a Option<T> makes it go away.
&[T]
Option<T>
Backtrace here: https://gist.github.com/3924593
The text was updated successfully, but these errors were encountered:
This test case builds for me on incoming.
Sorry, something went wrong.
Ah, the stage0 compiler does ICE. Maybe we just need to snapshot.
I started a snapshot.
That fixed it.
Auto merge of rust-lang#3824 - tiif:maxeventeinval, r=RalfJung
aea3cfd
Set EINVAL for epoll_wait maxevent value 0 Fixes rust-lang#3821
brson
No branches or pull requests
The following code causes an internal compiler error:
Switching the
&[T]
to aOption<T>
makes it go away.Backtrace here: https://gist.github.com/3924593
The text was updated successfully, but these errors were encountered: