summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2023-01-01 17:25:04 +0800
committerGitHub <noreply@github.com>2023-01-01 10:25:04 +0100
commit5b20f0685c71e68ab08f7a1941f7e160d91e538f (patch)
tree92f05e546316a9b3f388e294a1fefe5be8904793 /tests
parent4032eb4baafcfb4a1cb8fd41a474daac70103856 (diff)
downloadNim-5b20f0685c71e68ab08f7a1941f7e160d91e538f.tar.gz
fixes pragmas reorder (#21205)
Diffstat (limited to 'tests')
-rw-r--r--tests/pragmas/tpragmas_reorder.nim19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/pragmas/tpragmas_reorder.nim b/tests/pragmas/tpragmas_reorder.nim
new file mode 100644
index 000000000..c4b1a6b0a
--- /dev/null
+++ b/tests/pragmas/tpragmas_reorder.nim
@@ -0,0 +1,19 @@
+discard """
+  matrix: "--experimental:codeReordering"
+"""
+
+runnableExamples:
+  import strtabs
+  var t = newStringTable()
+  t["name"] = "John"
+  t["city"] = "Monaco"
+  doAssert t.len == 2
+  doAssert t.hasKey "name"
+  doAssert "name" in t
+
+include "system/inclrtl"
+
+{.pragma: rtlFunc, rtl.}
+
+proc hasKey*(): bool {.rtlFunc.} =
+  discard
\ No newline at end of file