blob: 0c614bfd44ef94be5b790a018b7003bb6961cee6 [file] [log] [blame]
// "Remove 'val' from parameter" "true"
class Pair<A, B>
{
operator fun component1(): A = null!!
operator fun component2(): B = null!!
}
fun f(list: List<Pair<String, String>>) {
for (val<caret> (x,y) in list) {
}
}