wasm-tools 1.251.0

CLI tools for interoperating with WebAssembly files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// FAIL: component wit %

package test:invalid@0.1.0;

interface foo {
  a: func(s: string) -> string;

  @since(version = 0.1.1)
  b: func(s: string) -> string;
}

world test {
  import foo;
}