FIR: use java functional interface as a source of sam function call

This commit is contained in:
Ilya Kirillov
2020-11-13 22:03:54 +03:00
parent 7b1eef136e
commit c4a8d1c3a1
3 changed files with 1 additions and 4 deletions
-2
View File
@@ -1,5 +1,3 @@
// IGNORE_FIR
val c = java.util.<caret>Comparator {(x: Int, y: Int) -> 1}
// REF: (java.util).Comparator
@@ -1,5 +1,3 @@
// IGNORE_FIR
val c = java.util.<caret>Comparator<Int> { x, y -> 1 }
// REF: (java.util).Comparator