mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-02 05:31:11 +00:00
6 lines
168 B
Python
6 lines
168 B
Python
i = !None # this shold be warned because `None` is a singleton (cannot be changed)
|
|
i.update! _ -> 2 # this should be errored
|
|
|
|
n = !2
|
|
n.update! i -> i * 2
|
|
assert n == 4
|