Skip to content

Commit

Permalink
Merge pull request #323 from alephium/debug_build
Browse files Browse the repository at this point in the history
Fix Build: Use named variable instead of anonymous
  • Loading branch information
simerplaha authored Oct 29, 2024
2 parents 514e1a9 + 4c56e6c commit 87152e6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,18 +112,18 @@ class GoToRenameEnumTypeSpec extends AnyWordSpec with Matchers {
| }
|
| fn parent(contract: TestEnum) -> () {
| let _ = >>TestEnum<<.Blah
| let _ = >>TestEnum<<.TWO
| let _ = >>TestEnum<<.FOUR
| let a = >>TestEnum<<.Blah
| let b = >>TestEnum<<.TWO
| let c = >>TestEnum<<.FOUR
| }
|}
|
|Contract Child() extends Parent() {
| fn child(contract: TestEnum) -> () {
| while(true) {
| let _ = >>TestEnum<<.Blah
| let _ = >>TestEnum<<.TWO
| let _ = >>TestEnum<<.FOUR
| let a = >>TestEnum<<.Blah
| let b = >>TestEnum<<.TWO
| let c = >>TestEnum<<.FOUR
| }
| }
|}
Expand Down

0 comments on commit 87152e6

Please sign in to comment.