Push Down: Conflict analysis

This commit is contained in:
Alexey Sedunov
2015-08-11 14:05:27 +03:00
parent a66ef47887
commit 96f255225b
22 changed files with 502 additions and 34 deletions
@@ -0,0 +1,14 @@
open class <caret>A {
private fun foo() {
}
// INFO: {"checked": "true"}
fun bar() {
foo()
}
}
class B : A() {
}