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

Error when a concept-bound generic function argument is a tuple #9573

Open
dawkot opened this issue Oct 30, 2018 · 0 comments
Open

Error when a concept-bound generic function argument is a tuple #9573

dawkot opened this issue Oct 30, 2018 · 0 comments
Labels

Comments

@dawkot
Copy link

dawkot commented Oct 30, 2018

type Tuple2Like[A, B] = concept c
  c[0] is A
  c[1] is B

assert (int, char) is Tuple2Like[int, char]

func foo(x: Tuple2Like) = discard

foo((0, 'a')) # "no tuple type for constructor" error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants