Files
micropython/tests/internal_bench/class_create-6.2-property.py
2025-07-29 10:08:53 +10:00

14 lines
165 B
Python

import bench
def test(num):
for i in range(num // 40):
class X:
@property
def x(self):
pass
bench.run(test)