Uast: tests for suspend and DeprecationLevel.HIDDEN functions appears in Uast tree (KT-27806, KT-32031)

This commit is contained in:
Nicolay Mitropolsky
2019-11-21 21:08:39 +03:00
parent 2772659ed2
commit 833571d8b2
9 changed files with 100 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package test.pkg
class Test {
fun test1() { }
@Deprecated(level = DeprecationLevel.HIDDEN, message="nothing")
fun test2() { }
}