Check for exposed local classes (or objects) in type signatures

This commit is contained in:
Dmitry Petrov
2015-10-09 09:47:10 +03:00
parent cbf4e4a973
commit 7e51fb8521
22 changed files with 364 additions and 47 deletions
@@ -1,6 +1,6 @@
// IS_APPLICABLE: false
val foo = { x: Int ->
private val foo = { x: Int ->
class Inner() {
fun temp(<caret>y: Int) : Int { return x + y }
}