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