Alona Enraght-Moony
Alona Enraght-Moony
Currently, if their are no ci builds, a report isn't printed as here an error is returned https://github.com/rust-lang/cargo-bisect-rustc/blob/37e4366023669df1c9e68d0cf74cce1fa577c42a/src/main.rs#L1146-L1152 so this function exits early https://github.com/rust-lang/cargo-bisect-rustc/blob/37e4366023669df1c9e68d0cf74cce1fa577c42a/src/main.rs#L615-L619 It would be nice to show...
Apparently mrustc can [build rustc 1.39 now](https://github.com/thepowersgang/mrustc/blob/master/build-1.39.0.sh). Doing this would reduce the bootstrap lenght, although I'm not sure its worth the effort to implement this, as it would still take...
```rust #[derive(Default)] struct Foo { x: i32, y: i32, z: i32, } #[autodefault::autodefault] fn foos() -> Vec { let f1 = Foo { x: 1 }; vec (assignee gets word-break'd, head-ref doesn't) This is because their is a variable number of collumns in the table, and I only checked for `queue/all`...
With this grammar: ```rust grammar(); NestedExpression: () = { "N", "(" Expression ")" } IndexingExpression: () = { "[" "]", } ObjectSelector: () = { "N", IndexingExpression, } VariadicExpression: ()...
This grammer ```rust grammar(); pub Root = { } Interface = { Doc "interface" } Struct = { Doc "struct" } Doc = { "doc" } Name = { "name"...