-
```rust
#[inline(always)]
pub fn changed_iter(&self) -> impl Iterator {
self.changed_last_frame.iter()
}
```
```
error: internal compiler error: src\state.rs:31: src\librustc_typeck\check\…
-
```
error: internal compiler error: src\librustc_typeck\check\mod.rs:634: escaping regions in predicate Obligation(predicate=Binder(ProjectionPredicate(ProjectionTy { substs: Slice([_]), item_def_id:…
-
The [following code](https://play.rust-lang.org/?gist=18ff3facf246fe36e51170f368d373c4&version=nightly&mode=debug)
```rust
#![feature(rust_2018_preview)]
#![deny(unnecessary_extern_crate)]
#![al…
-
```
error: internal compiler error: /checkout/src/librustc_typeck/check/mod.rs:632: escaping regions in predicate Obligation(predicate=Binder(ProjectionPredicate(ProjectionTy { substs: Slice([_]), it…
-
Based on @azriel91 feedback in #44 to prevent issues when running interactive executables.
-
If I do serialization of the JSON object `{"type": "foo", "count": 3}`, the struct would have to look like that to match the field names:
```rust
struct Obj {
type: String,
count: u32,
…
dbrgn updated
6 years ago
-
```rust
#![feature(conservative_impl_trait)]
fn iter_values(a: &[u32]) -> impl Iterator{
a.iter().map(|a| &a)
}
```
([playpen](https://play.rust-lang.org/?gist=7743b4fa5ae2cbd45d0a70…
-
rustc/compiler deadlock when compile recursive function
I tried this code:
```
$ RUST_BACKTRACE=full RUST_LOG=trace LLVM_SYS_40_PREFIX=/usr/local/opt/llvm LLVM_SYS_40_FFI_WORKAROUND=1 cargo tes…
flier updated
6 years ago
-
As reported on reddit: https://www.reddit.com/r/rust/comments/5d1dzx/rustc_1130_and_nightly_infinite_loops_while/
Backtrace: https://gist.github.com/TimNN/6070f0da6e697a93ef13ab74d316524a
To rep…
TimNN updated
6 years ago
-
Internal compiler error on stable 1.22.1.
[Playground](https://play.rust-lang.org/?gist=daf9696d339a8a7f17cb6dea55132074&version=stable)
```rust
struct A;
struct B;
trait Foo Foo Foo FnOnce…
valff updated
7 years ago