We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e08e86 commit 7c28762Copy full SHA for 7c28762
test/cases/flavorful/world.wit
@@ -28,10 +28,10 @@ interface test {
28
type list-typedef = string;
29
type list-typedef2 = list<u8>;
30
type list-typedef3 = list<string>;
31
- list-typedefs: func(a: list-typedef, c: list-typedef3) -> (a: list-typedef2, b: list-typedef3);
+ list-typedefs: func(a: list-typedef, c: list-typedef3) -> tuple<list-typedef2, list-typedef3>;
32
33
list-of-variants: func(a: list<bool>, b: list<result>, c: list<my-errno>)
34
- -> (a: list<bool>, b: list<result>, c: list<my-errno>);
+ -> tuple<list<bool>, list<result>, list<my-errno>>;
35
}
36
37
world flavorful {
0 commit comments