leo icon indicating copy to clipboard operation
leo copied to clipboard

🦁 The Leo Programming Language. A Programming Language for Formally Verified, Zero-Knowledge Applications

Results 555 leo issues
Sort by recently updated
recently updated
newest added

## 🐛 Bug Report same bug as #418 and #450 except now it only happens when using input as the variable. like before, its more severe with higher bit numbers...

bug
fuzz-bug
snarkvm-bug

## 🐛 Bug Report related to #608. multiple i128 division operations using input causes an OOM during the setup stage. while isolating this bug from leo-fuzzer programs i found several...

bug
fuzz-bug
snarkvm-bug

## 🐛 Bug Report subtracting int::MIN from a signed int fails if the int is mutable. this is probably related to the old bug #429 which was closed as "correct...

bug
fuzz-bug
snarkvm-bug

## 🐛 Bug Report this only throws an error when using a mutable/input variable, if you use a const variable then it runs fine #### Code snippet to reproduce ```...

bug
fuzz-bug
priority-high
snarkvm-bug
module-asg

## 🐛 Bug Report #### Code snippet to reproduce ``` circuit Circ { function func (&self) -> u8 { return 1; } } function main () { let x =...

bug
fuzz-bug
priority-low
module-asg

## 🐛 Bug Report #### Input ``` [constants] x: u32 = 2; ``` #### Code ``` function main (const x: u32) { let y = [0u8; 4]; y[0..x] = [1;...

bug
fuzz-bug
priority-high
module-asg

## 🐛 Bug Report related to #1146 and closed bug #1082 using const input in a ternary in a slice that gets indexed on the left hand side of a...

bug
fuzz-bug
priority-medium
module-compiler
panic

## 🐛 Bug Report directly related to the closed bug #1161. attempting to mutate an address in a non-const branch causes `AssignmentMissing` #### Code snippet to reproduce ``` function main...

bug
fuzz-bug
priority-high
snarkvm-bug

## 🐛 Bug Report an error should be thrown for the following but instead it compiles and runs successfully #### Code snippet to reproduce ``` function main () { let...

bug
should-fail

## 🐛 Bug Report #### Code snippet to reproduce ``` function main () { let x = [1u8, 2u8, 3u8, 4u8, 5u8]; let y: [u8; _] = x[0..2]; } ```...

bug
fuzz-bug
module-asg