0rphon
0rphon
Description =========== possibly related to #285 although the suggested solution didn't work for me and it crashes instantly on my machine instead of taking a "long time" like detailed in...
## 🐛 Bug Report this seems to have basically the same cause as the OOM errors. every time you do an `i32 ** i32` operation with input it adds about...
## 🐛 Bug Report On master, there was a flag inside the parser called `fuzzy_struct_state` that forced structs to be inside of parentheses when used inside for-loop bounds. This logic...
## 🐛 Bug Report #### Code snippet to reproduce ``` ts function main(x: u8) -> u8 { const a: u8 = x; const b: u8 = a; let c: u8...
## 🐛 Bug Report #### Code snippet to reproduce ``` function main (a: bool) -> bool { for i: u8 in 0u8..2u8 { let b: u8 = 1u8; } for...
## 🐛 Bug Report #### Code snippet to reproduce ``` function main () -> u8 { for i: bool in true..false { let a: bool = i; } return 1u8;...
## 🐛 Bug Report #### Code snippet to reproduce ``` ts function main (b: bool) -> bool { for i: u32 in 0u32..10u32 { i = 1u32; } return b;...
## 🐛 Bug Report it doesn't happen with `+`, `-`, `/`, or `**` but happens with the rest of the operations shown below #### Code snippet to reproduce ``` function...
## 🐛 Bug Report the following error message points to where the variable was declared instead of where the actual error is. probably the result of https://github.com/AleoHQ/leo/pull/1864 #### Code snippet...
## 🐛 Bug Report #### Code snippet to reproduce ``` function main () -> u8 { return 1u8; let x: u8 = 1u8; return x; } ``` #### Stack trace...