Add test case for #437

This commit is contained in:
Michael Hansen
2024-02-14 21:36:27 -08:00
parent 787090e0a5
commit 7929dbe6e0
5 changed files with 19 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,8 @@
def foo(a, b, c):
return c - (a + b)
def bar(a, b, c, d):
return a / ((b ** c) * d)
def baz(a, b, c, d):
return a - ((b ^ c) + d)

View File

@@ -0,0 +1,11 @@
def foo ( a , b , c ) : <EOL>
<INDENT>
return c - ( a + b ) <EOL>
<OUTDENT>
def bar ( a , b , c , d ) : <EOL>
<INDENT>
return a / ( b ** c * d ) <EOL>
<OUTDENT>
def baz ( a , b , c , d ) : <EOL>
<INDENT>
return a - ( ( b ^ c ) + d ) <EOL>