blob: 57fa39ce2059f81e9c6190fc912f5ad4dea209bb (
plain)
1
2
3
4
5
6
7
8
9
|
;; Test that we validate imported functions.
;; RUN: not wasm-opt %s -all --disable-simd 2>&1 | filecheck %s
;; CHECK: all used types should be allowed
(module
(import "env" "imported-v128" (func $imported-v128 (result v128)))
)
|