<div dir="ltr">Hi all,<div><br></div><div>I know that the panama project is pushing forward on java 20 and 21 right now, and java 17 is probably not a great concern for you all at the moment, but I was testing VaList support in my library, Slinc, and it seems to be flaky on Java 17.0.5. The test in question goes like so:</div><div><br></div><div><font face="monospace">  property("varargs can be embedded in structs"):<br>      forAll: (ints: Seq[CInt]) =><br>        val numTake = 8<br>        Scope.confined:<br>          val va = VarArgsBuilder.fromIterable<br>            (<br>              ints.map(a => a: Variadic).take(numTake)<br>            )<br>            .build<br><br>          val x = va.copy()<br><br>          val p = Ptr.copy(E(x))<br>          <br>          ints.take(numTake).foreach: value =><br>            assertEquals(va.get[CInt], value, "conversion test")<br><br>          ints.take(numTake).foreach: value =><br>            assertEquals((!p).list.get[CInt], value)</font><br></div><div>Originally in this test I was testing if I could write a VaList to a struct and get it back out and pull the values out of it appropriately. What I noticed is that if the number of integer values in a row passed into VaList is 8 or greater, my test fails. 7 or less ints and the test passes. On the Java 19 implementation, this does not happen, nor does this happen when I pass a great deal more parameters (but more varied in types, some longs, some pointers, some structs). This test passes if I randomly generate Long values and pass those into the VaList. </div><div><br></div><div>This is not a critical bug by any means. I can sidestep the issue by encoding all lower integral types into Long in the java 17 runtime for my library. I just wanted to bring this to your attention because it's a weird issue that java 17 users of the foreign api may hit.</div><div><br></div><div>Thanks for your time,</div><div>Mark Hammons</div></div>