Ary Borenszweig
Ary Borenszweig
# Description ## Problem No issue, but: - with this we could move forward with #8420 without ever introducing a breaking change (we can add `, ..` in the existing...
# Description ## Problem Resolves #10613 ## Summary This was one trickier than I thought. This code used to error: ```noir fn main() { comptime { let _ = foo(1_u8);...
### Aim This is really a minor bug. This code: ```noir fn main() { comptime { let array = [1, 2, 3]; let _ = array[-1_i32]; } } ``` gives...
See https://github.com/noir-lang/noir/pull/10740#discussion_r2593079578
### Aim This code: ```noir pub type Double: u32 = N * 2; fn main() { Double; } ``` gives this error: ``` error: cannot find `N` in this scope...
### Aim This code: ```noir pub struct Foo {} fn main() { Foo; } ``` gives this error: ``` error: cannot find `Foo` in this scope ┌─ src/main.nr:4:5 │ 4...