CheaterCodes

Results 36 comments of CheaterCodes

Just had this happen as well, same crash report. Removing the default setting from carpet.conf fixed the issue. Carpet_21_01_06b

For reference: I believe this was first discussed here: https://github.com/rust-lang/rustlings/commit/4b6540c71adabad647de8a09e57295e7c7c7d794 And then later introduced in the pull request here: https://github.com/rust-lang/rustlings/pull/1310/ I'm still not sure why the comment was added, but...

After having re-read, it appears that enums3.rs expects you to create a message like this, but that change was then later reversed or never applied: ```rust enum Message { ChangeColor((u8,...

> For the record, `:` is outlives syntax. See #147. > > I think the trait bound is expressed `Bar(T)`, though reference other tests to make sure. I'm not sure...

Thank you for the explanation. Using `serde(bound = "")` does indeed work. I suppose if more complex (generic) types don't have this inferred borrow anyway, then this is equivalent to...

Since this came up in the Rust community discord: The code is still unsound. ```rust let word = &words[i] as *const _ as *mut Word; ``` Writing to this pointer...

Link to original discussion: https://github.com/QuiltMC/chasm/pull/83#discussion_r1016597086

Is this still reasonably up-to-date? It originally only required minor changes, but I'm not sure how far behind this PR is.

I'll preface this with saying that I'd be in favor of implementing both new syntax suggestions. The concern mentioned with lookahead can safely be ignored. We actually already use a...