diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-07 07:12:14 +0100 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-07 07:12:58 +0100 |
commit | c98d7461a1c54b11b106ffb630ec079e1ab60993 (patch) | |
tree | f5976d6eaa6757c61e2b6e4162fe9fc860f1034c /tests/micropython/native_const_intbig.py | |
parent | 1bd17de4b782487725a611acb407f64fa41ae257 (diff) |
tests/micropython/: Split off intbig tests.
Diffstat (limited to 'tests/micropython/native_const_intbig.py')
-rw-r--r-- | tests/micropython/native_const_intbig.py | 7 |
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()) |