Ratmir Karabut

Results 4 issues of Ratmir Karabut

Hi, the tag page is currently not working as it is and seems to be just a stub. Added tag handling.

### Problem At the moment the faster comptime fuzzing target, `comptime_vs_brilig_direct` (introduced in https://github.com/noir-lang/noir/pull/8924) must avoid `print` statements, as the elaborator doesn't recognize them. ### Happy Case `print` statements should...

enhancement

### Aim The following code: ``` unconstrained fn main() -> pub bool { foo(false) } unconstrained fn foo(mut a: bool) -> bool { if !a { true } else {...

### Aim The following code: ```rust fn main() { unsafe { foo(); } } unconstrained fn foo() { bar([&mut false]); } unconstrained fn bar(mut c: [&mut bool; 1]) -> bool...