Check for exposed local classes (or objects) in type signatures: fix IDE test

This commit is contained in:
Dmitry Petrov
2015-10-12 15:35:39 +03:00
parent 7e51fb8521
commit 818931ec06
@@ -2,6 +2,6 @@
interface I
fun f(): List<I> {
private fun f(): List<I> {
return listOf(object : I { })
}