blob: 3ee969d8e61352e1fe7355132fea4b54b4b00d7d [file] [log] [blame]
data class XY(val x: Int, val y: Int)
fun convert(xy: XY, f: (XY) -> Int) = f(xy)
fun foo() = <error>convert</error> { (<error>x</error><error><error>,</error> y)</error> }