Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/component-macro/tests/codegen/small-anonymous.wit
1692 views
package foo:foo;

interface anon {
  enum error {
    success,
    failure,
  }

  option-test: func() -> result<option<string>, error>;
}

world the-world {
  import anon;
  export anon;
}