Deprecate escaped modifiers and unescaped annotations

This commit is contained in:
Denis Zharkov
2015-09-08 12:11:30 +03:00
parent 25cd9de71a
commit 676ca86ea4
184 changed files with 979 additions and 787 deletions
@@ -1,5 +1,5 @@
class Iter {
Deprecated("text")
@Deprecated("text")
fun iterator() : IterIterator = throw Exception()
class IterIterator {
@@ -11,9 +11,9 @@ class Iter {
class Iter2 {
fun iterator() : Iter2Iterator = throw Exception()
class Iter2Iterator {
Deprecated("text")
@Deprecated("text")
fun hasNext(): Boolean = throw UnsupportedOperationException()
Deprecated("text")
@Deprecated("text")
fun next(): String = throw UnsupportedOperationException()
}
}