mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
6 lines
125 B
Python
6 lines
125 B
Python
f x: [{""}; _] = None
|
|
|
|
arr = ["aaa"]
|
|
for! arr, elem =>
|
|
a = ["", "aaa"] # [{"", "aaa"}; 2]
|
|
f a # ERR: type mismatched
|