You've already forked wit-bindgen
mirror of
https://github.com/AdaCore/wit-bindgen.git
synced 2026-02-12 13:12:42 -08:00
24 lines
291 B
Plaintext
24 lines
291 B
Plaintext
package foo:foo
|
|
|
|
interface foo {
|
|
type headers = list<tuple<string, string>>
|
|
record a {
|
|
headers: headers
|
|
}
|
|
x: func() -> a
|
|
}
|
|
|
|
interface bar {
|
|
use foo.{a}
|
|
x: func() -> a
|
|
}
|
|
|
|
world baz {
|
|
import foo
|
|
import bar
|
|
import baz: interface {
|
|
use foo.{a}
|
|
x: func() -> a
|
|
}
|
|
}
|