You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
189 B
14 lines
189 B
4 years ago
|
def foo(x:str, y:bool) -> int:
|
||
|
return bar()
|
||
|
|
||
|
def bar() -> int:
|
||
|
return 1
|
||
|
|
||
|
# All of the below are bad calls
|
||
|
foo("Hello")
|
||
|
foo("Hello", False, 3)
|
||
|
foo("Hello", 3)
|
||
|
foo(1, "Hello")
|
||
|
baz()
|
||
|
|