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

Assertion on array literal as call argument where a ReadSeq[T] is expected #2232

Closed
mfelsche opened this issue Sep 15, 2017 · 1 comment
Closed

Comments

@mfelsche
Copy link
Contributor

The following small pony program hits an assertion in

src/libponyc/codegen/genname.c:63: type_append: Assertion 0 failed.

class box MyBox[T]
  fun foo(t: T): U8 => U8(1)

type TupledThingy[T] is (U32, MyBox[T] box)

actor Main
  new create(env : Env) =>
    try
      doSthTupled[USize]([
        (U32(1), MyBox[USize])
        (U32(2), MyBox[USize])
      ])?
    else
      env.out.print("error")
    end

  fun doSthTupled[T](thingies: ReadSeq[TupledThingy[T]])? =>
    thingies(1)?

http://playground.ponylang.org/?gist=39e11ca8a753c695ce24d1e37e8c4213

Changing the argument of doSthTupled to Array[TupledThingy[T]] makes this snipped compile just fine.

@jemc jemc self-assigned this Sep 15, 2017
@mfelsche mfelsche added the triggers release Major issue that when fixed, results in an "emergency" release label Sep 20, 2017
@jemc jemc removed their assignment Sep 20, 2017
@jemc
Copy link
Member

jemc commented Oct 5, 2017

From testing on my end, it looks like this will be resolved by some combination of #2258 and #2259, as I can reproduce on master, but can't on a combination branch containing both of those PRs.

So due to that, I'm going to close this as a dup of #2233.

Feel free to reopen if I'm wrong.

@jemc jemc closed this as completed Oct 5, 2017
@jemc jemc added duplicate and removed triggers release Major issue that when fixed, results in an "emergency" release bug: 1 - needs investigation labels Oct 5, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants