mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
11 lines
102 B
Python
11 lines
102 B
Python
x = 5
|
|
x.__init__(6)
|
|
assert x == 5
|
|
|
|
class A(int):
|
|
pass
|
|
|
|
x = A(7)
|
|
assert x == 7
|
|
assert type(x) is A
|