Elichai Turkel

Results 84 issues of Elichai Turkel

Trying to do anything in C with `__int128` is transpiled into: `type int128_t int64`

if the from/to path had spaces in it it wouldn't work. So I added quotes before and after the path.

Clang version: 9.0.0. ``` $ CC=clang CXX=clang++ make -f minicargo.mk make -f Makefile all make[1]: Entering directory '/home/elichai2/gits/mrustc' make[1]: Nothing to be done for 'all'. make[1]: Leaving directory '/home/elichai2/gits/mrustc' test...

I-ccompiler

Hi, When I compile with xargo I get `error[E0432]: unresolved import core`. I don't want to explicitly import core because that will break the regular cargo build (cargo: `the name...

Hi, Should minor version changes bump the underlying rocksdb library? how does this affect people who use dynamic linkage?

Hi, Right now If there's a Fn* trait that has 2 parameters of the same type it's really easy to confuse which is which. i.e.: ``` type Callback = FnMut(&[u8],...

T-lang
A-syntax
A-function-pointers

The current way we match over the result breaks type coercion, example: example this will break: (https://play.rust-lang.org/?gist=487d56225ce4b06116eb357f75bf6474) ```rust #[logfn(INFO)] fn first() -> Result { Err(Box::new(MyError)) } ``` Possible solutions: *...

Minimally reproducible example: ``` use mutagen::mutate; #[mutate] fn hi(mut ret: i64) -> i64 { let sh = if ret > 5 { 0 } else { 8 }; ret +=...

Hi, I think adding this crate to CI would be awesome, but it will require 3 changes: 1. Important - suppressing mutations, not all mutations can be fixed, and some...

Hi, First this crate is awesome :) Thank you!. Second, In my view there are 2 important features missing to add this to a CI: 1. Feature gate the mutations,...