mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 09:50:15 +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)
|