MarkRS
06/27/2025, 3:02 PMval someFloats = listOf(1F, 2F, 4.2F)
withData<Float>({"Testing $someFloat"}, someFloats) { someFloat -> &tc
and the compiler complains about $someFloat in the name function (with our without .toString()).
Full(er) disclosure, it's the seventh nested withData, but without the name function it works, and I've tried reducing the number of nests and it still complains.
Bug?phldavies
06/27/2025, 3:31 PM{"Testing $it"}