Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue when intercepted function has ...elements #12

Closed
ivancorrales opened this issue Nov 20, 2019 · 1 comment
Closed

Issue when intercepted function has ...elements #12

ivancorrales opened this issue Nov 20, 2019 · 1 comment
Assignees
Labels
bug Something isn't working
Projects

Comments

@ivancorrales
Copy link
Member

No description provided.

@ivancorrales ivancorrales created this issue from a note in Bugs (Needs triage) Nov 20, 2019
@ivancorrales
Copy link
Member Author

When goa intercepts function like below

func myFunction(a []string, b ...string) []string 

the advice call is not correctly generated

result0 := myFunction(a,b)

but should be

result0 := myFunction(a,b...)

@ivancorrales ivancorrales self-assigned this Nov 20, 2019
@ivancorrales ivancorrales added the bug Something isn't working label Nov 20, 2019
Bugs automation moved this from Needs triage to Closed Nov 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Bugs
  
Closed
Development

No branches or pull requests

1 participant