summaryrefslogtreecommitdiff
path: root/tests/micropython/native.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/native.py')
-rw-r--r--tests/micropython/native.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/micropython/native.py b/tests/micropython/native.py
deleted file mode 100644
index 8f087c494..000000000
--- a/tests/micropython/native.py
+++ /dev/null
@@ -1,10 +0,0 @@
-@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)