We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f312f84 commit 35f1a87Copy full SHA for 35f1a87
tests/unittests/resources/LangSuite/vm-tests.ark
@@ -133,8 +133,12 @@
133
(test:eq (type 1) "Number")
134
(test:eq (type "") "String")
135
(test:eq (type make) "Function")
136
+ # CHECK_TYPE_OF
137
+ ((fun () (test:expect (= (type make) "Function"))))
138
(test:eq (type print) "CProc")
139
(test:eq (type closure) "Closure")
140
141
+ ((fun () (test:expect (= (type closure) "Closure"))))
142
(test:eq (type nil) "Nil")
143
(test:eq (type true) "Bool")
144
(test:eq (type false) "Bool")
0 commit comments