Update test data for highlighter tests on deprecations.

This commit is contained in:
Ilya Ryzhenkov
2015-04-20 17:45:58 +03:00
parent 879b6a0a3f
commit 79388d0dbf
13 changed files with 53 additions and 53 deletions
@@ -1,10 +1,10 @@
fun test() {
val c = MyClass()
c.<warning descr="'getter for test1' is deprecated. Use A instead">test1</warning>
c.<warning descr="'getter for test2' is deprecated. Use A instead">test2</warning>
c.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'getter for test1: String' is deprecated. Use A instead">test1</warning>
c.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'getter for test2: String' is deprecated. Use A instead">test2</warning>
c.test2 = ""
c.<warning descr="'val test3' is deprecated. Use A instead">test3</warning>
c.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'test3: String' is deprecated. Use A instead">test3</warning>
}
class MyClass() {