Skip to content

Commit

Permalink
Revert test file rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Aug 17, 2024
1 parent 0e3b24c commit f9dcd7c
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ def a(x: int) -> None:
if x > 0:
b(x-1)

# Output: compiler error in file "tests/other_errors/import_cycle.jou": imported file should not have `main` function
# Output: a 10
# Output: b 9
# Output: a 8
# Output: b 7
# Output: a 6
# Output: b 5
# Output: a 4
# Output: b 3
# Output: a 2
# Output: b 1
# Output: a 0
def main() -> int:
a(10)
return 0

0 comments on commit f9dcd7c

Please sign in to comment.