mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
11 lines
185 B
Plaintext
11 lines
185 B
Plaintext
|
;; Test tokenization
|
||
|
|
||
|
(assert_malformed
|
||
|
(module quote "(func (drop (i32.const0)))")
|
||
|
"unknown operator"
|
||
|
)
|
||
|
(assert_malformed
|
||
|
(module quote "(func br 0drop)")
|
||
|
"unknown operator"
|
||
|
)
|