Update the ahead of time tests

This commit is contained in:
Dave Halter
2018-01-30 23:09:42 +01:00
parent 6b535c0503
commit 2b9429be38

View File

@@ -4,23 +4,16 @@
somelist = [1, 2, 3, "A", "A"]
element : int
for element in somelist[0:3]:
for element in somelist:
#? int()
element
otherlist = [1, "A"]
for e in otherlist:
#? int() str()
e
test_string: str = "Hello, world!"
test_string: str = NOT_DEFINED
#? str()
test_string
char: str
for char in test_string:
for char in NOT_DEFINED:
#? str()
char