Test update after 'Specify explicitly type' action refactoring

This commit is contained in:
Mikhael Bogdanov
2013-02-21 18:05:56 +04:00
parent 5460f984e9
commit 49bbbe1a0b
14 changed files with 15 additions and 14 deletions
@@ -1,4 +1,4 @@
// "Remove initializer from property" "true"
abstract class A {
abstract var i<caret>: Int
abstract var i: Int<caret>
}
@@ -1,4 +1,5 @@
// "Remove getter and initializer from property" "true"
abstract class B {
abstract val i<caret>: Int
abstract val i: Int<caret>
}