tests/builtin_minmax: Make compatible with @native codegen.
This commit is contained in:
parent
f380904bd9
commit
55995869e5
|
@ -35,5 +35,7 @@ print(min([1, 2, 3, 4, 5], default=-1))
|
||||||
print(min([], default=-1))
|
print(min([], default=-1))
|
||||||
print(max([1, 2, 3, 4, 5], default=-1))
|
print(max([1, 2, 3, 4, 5], default=-1))
|
||||||
print(max([], default=-1))
|
print(max([], default=-1))
|
||||||
# Make sure it works with lazy iterables
|
# make sure it works with lazy iterables
|
||||||
print(min((i for i in []), default=-10))
|
# can't use Python generators here, as they're not supported
|
||||||
|
# byy native codegenerator.
|
||||||
|
print(min(enumerate([]), default=-10))
|
||||||
|
|
Loading…
Reference in New Issue