You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Huh I'm sorry, this seems related to the switch to *mut. I thought I was calling RawPtr::null but wasn't. Looks like I should be using mut_null instead. My bad!
…, r=lnicola
Further tuning of the Gentoo installation instructions.
Based on feedback from the Gentoo repository maintainer, addition of the possibility to install rust-analyzer via rustup.
The following code won't compile:
Instead, it fails with
error: mismatched types: expected
*mut uintbut found
*const <generic #1>(values differ in mutability)
But it gets better, this also won't compile:
That fails with
error: cannot determine a type for this expression: unconstrained type [E0101]
.To get it to compile, you need to do:
This wasn't previously necessary (at least as of 0.11.0).
I'm using
rustc 0.12.0-pre-nightly (4d4eb1023 2014-08-02 23:36:09 +0000)
The text was updated successfully, but these errors were encountered: