2024-04-02 09:04:01 +00:00
|
|
|
aqua Import declares someFunc
|
|
|
|
|
2021-09-14 11:42:11 +00:00
|
|
|
service GetStr("multiret-test"):
|
2024-04-02 09:04:01 +00:00
|
|
|
retStr(s: []string, a: []string)
|
2021-08-31 10:05:26 +00:00
|
|
|
|
2024-04-02 09:04:01 +00:00
|
|
|
func someFunc() -> string:
|
|
|
|
<- "some func call"
|
2021-08-31 10:05:26 +00:00
|
|
|
|
2021-09-14 11:42:11 +00:00
|
|
|
func foo_wrapper():
|
|
|
|
GetStr.retStr(nil, nil)
|
2021-09-13 10:08:15 +00:00
|
|
|
|
2021-09-20 12:35:45 +00:00
|
|
|
func invalid_append() -> *string:
|
2021-09-14 11:42:11 +00:00
|
|
|
stream: *string
|
2021-09-20 12:35:45 +00:00
|
|
|
cream: *string
|
|
|
|
dream: *string
|
|
|
|
str: *string
|
|
|
|
asdasd: *string
|
|
|
|
GetStr.retStr(stream, nil)
|
2021-11-02 09:26:00 +00:00
|
|
|
<- stream
|