From 26cbb3ffcf439e011dd5937f4c58ea30e9cc884d Mon Sep 17 00:00:00 2001 From: Eric McCarthy Date: Sat, 21 Aug 2021 22:08:46 -0700 Subject: [PATCH] Update circuit.leo Change the 2nd variable named `character` in scope to be `character2`. --- tests/compiler/char/circuit.leo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/compiler/char/circuit.leo b/tests/compiler/char/circuit.leo index b3f7f3c7cd..ab40365545 100644 --- a/tests/compiler/char/circuit.leo +++ b/tests/compiler/char/circuit.leo @@ -26,6 +26,6 @@ circuit Foo { function main(character: char) -> char { let f = Foo { character }; - let character = f.character == 'a' ? 'a' : f.character; - return character; -} \ No newline at end of file + let character2 = f.character == 'a' ? 'a' : f.character; + return character2; +}