mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
15 lines
144 B
Python
15 lines
144 B
Python
import bench
|
|
|
|
|
|
def test(num):
|
|
class B:
|
|
pass
|
|
|
|
for i in range(num // 40):
|
|
|
|
class X(B):
|
|
pass
|
|
|
|
|
|
bench.run(test)
|