Files
wit-bindgen/tests/codegen/simple-functions.wit
Alex Crichton a2935a4fa4 Update wit-bindgen for upcoming WIT changes (#580)
* Update Rust codegen for new WIT changes

* Update the markdown generation for new WIT

* more-rust

* Update the C generator for new WIT

* Get Rust guest tests compiling

* Get rust host tests working

* Get all C tests passing

* Turn off teavm-java and Go tests for now

* Fixup lockfile after rebase

* Bump crate versions

* Update dependency sources

* Update to wasmtime dep
2023-05-26 12:30:24 -05:00

18 lines
263 B
Plaintext

package foo:foo
interface simple {
f1: func()
f2: func(a: u32)
f3: func(a: u32, b: u32)
f4: func() -> u32
f5: func() -> tuple<u32, u32>
f6: func(a: u32, b: u32, c: u32) -> tuple<u32, u32, u32>
}
world the-world {
import simple
export simple
}