summaryrefslogtreecommitdiff
path: root/tests/micropython/native_const_intbig.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-07 07:12:14 +0100
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-07 07:12:58 +0100
commitc98d7461a1c54b11b106ffb630ec079e1ab60993 (patch)
treef5976d6eaa6757c61e2b6e4162fe9fc860f1034c /tests/micropython/native_const_intbig.py
parent1bd17de4b782487725a611acb407f64fa41ae257 (diff)
tests/micropython/: Split off intbig tests.
Diffstat (limited to 'tests/micropython/native_const_intbig.py')
-rw-r--r--tests/micropython/native_const_intbig.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/micropython/native_const_intbig.py b/tests/micropython/native_const_intbig.py
new file mode 100644
index 000000000..611b39d8f
--- /dev/null
+++ b/tests/micropython/native_const_intbig.py
@@ -0,0 +1,7 @@
+# check loading constants
+
+@micropython.native
+def f():
+ return 123456789012345678901234567890
+
+print(f())