0rphon

Results 38 issues of 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
Needs More Info

## 🐛 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
fuzz-bug
priority-medium

## 🐛 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
fuzz-bug
module-parser

## 🐛 Bug Report #### Code snippet to reproduce ``` ts function main(x: u8) -> u8 { const a: u8 = x; const b: u8 = a; let c: u8...

bug

## 🐛 Bug Report #### Code snippet to reproduce ``` function main (a: bool) -> bool { for i: u8 in 0u8..2u8 { let b: u8 = 1u8; } for...

bug
fuzz-bug
module-tyc

## 🐛 Bug Report #### Code snippet to reproduce ``` function main () -> u8 { for i: bool in true..false { let a: bool = i; } return 1u8;...

bug
should-fail
module-tyc

## 🐛 Bug Report #### Code snippet to reproduce ``` ts function main (b: bool) -> bool { for i: u32 in 0u32..10u32 { i = 1u32; } return b;...

bug
should-fail
module-tyc

## 🐛 Bug Report it doesn't happen with `+`, `-`, `/`, or `**` but happens with the rest of the operations shown below #### Code snippet to reproduce ``` function...

bug
fuzz-bug
should-fail
module-tyc

## 🐛 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
error-msg
module-tyc

## 🐛 Bug Report #### Code snippet to reproduce ``` function main () -> u8 { return 1u8; let x: u8 = 1u8; return x; } ``` #### Stack trace...

bug
fuzz-bug
should-fail