summaryrefslogtreecommitdiff
path: root/tests/micropython/native_misc.py
blob: 8f087c4949642f15dfe06ecacc096ba4a7e03e39 (plain)
1
2
3
4
5
6
7
8
9
10
@micropython.native
def native_test(x):
    print(1, [], x)

native_test(2)

# check that GC doesn't collect the native function
import gc
gc.collect()
native_test(3)