mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
7 lines
165 B
Python
7 lines
165 B
Python
C = Class()
|
|
|
|
_ = { 1: C.new() }
|
|
_ = { C.new(): 1 } # ERR
|
|
|
|
ints_or_strs _: {.x = Int; .y = Int} or {.x = Str; .y = Str} = None
|
|
ints_or_strs({.x = 1; .y = "a"}) # ERR
|