Corrections on code review

This commit is contained in:
Valentin Kipyatkov
2016-09-22 23:17:24 +03:00
parent e4f80e277f
commit 023c02deb3
81 changed files with 96 additions and 96 deletions
@@ -1,4 +1,4 @@
// "Change type of overridden property 'B.x' to '(Int) -> Int'" "true"
// "Change type of base property 'B.x' to '(Int) -> Int'" "true"
interface A {
val x: (Int) -> Int
}
@@ -1,4 +1,4 @@
// "Change type of overridden property 'B.x' to '(Int) -> Int'" "true"
// "Change type of base property 'B.x' to '(Int) -> Int'" "true"
interface A {
val x: (Int) -> Int
}
@@ -1,4 +1,4 @@
// "Change type of overridden property 'A.x' to 'String'" "true"
// "Change type of base property 'A.x' to 'String'" "true"
interface A {
var x: Int
}
@@ -1,4 +1,4 @@
// "Change type of overridden property 'A.x' to 'String'" "true"
// "Change type of base property 'A.x' to 'String'" "true"
interface A {
var x: String
}
@@ -1,4 +1,4 @@
// "Change return type of overridden function 'A.foo' to 'Long'" "true"
// "Change return type of base function 'A.foo' to 'Long'" "true"
interface A {
fun foo(): Int
}
@@ -1,4 +1,4 @@
// "Change return type of overridden function 'A.foo' to 'Long'" "true"
// "Change return type of base function 'A.foo' to 'Long'" "true"
interface A {
fun foo(): Long
}