Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPopular repositories
3,857 contributions in the last year
Activity overview
Contribution activity
December 2020
Created 11 commits in 6 repositories
Created a pull request in rust-lang/rust that received 7 comments
Opened 4 other pull requests in 3 repositories
rust-lang/const-eval
1
open
1
merged
rust-lang/miri
1
merged
rust-lang/rust
1
merged
Reviewed 7 pull requests in 2 repositories
rust-lang/rust 6 pull requests
- Constier maybe uninit
- Document that heap allocations are not guaranteed to happen, even if explicitly performed in the code
- [const_panic] Report const_panic diagnostics identically to compiler_error invocations
- disable a ptr equality test on Miri
- add const_allocate intrinsic
- Change ui test that are run-pass and that do not test the compiler to library tests
rust-lang/miri 1 pull request
Created an issue in rust-lang/unsafe-code-guidelines that received 13 comments
"_" patterns and validity invariants
The following code is not even unsafe, so it certainly cannot be UB: fn foo(ptr: *const bool) { let _ = *ptr; } foo(&3u8 as *const u8 as *const bool);