Pull Up: Implement conflict analysis

This commit is contained in:
Alexey Sedunov
2015-07-16 17:29:00 +03:00
parent 8493908710
commit 390f352e75
19 changed files with 344 additions and 30 deletions
@@ -0,0 +1,9 @@
abstract class A<T, U> {
// INFO: {"checked": "true"}
fun foo(s: String, x: U) {
}
}
class B<X>: A<String, X>() {
}