Annotations supported

#KT-8912 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-09-01 23:22:39 +03:00
parent 366204da85
commit 6575fb8535
15 changed files with 160 additions and 16 deletions
@@ -0,0 +1,10 @@
// "Replace with 'test.Bar'" "true"
package test
@deprecated("Replace with bar", ReplaceWith("test.Bar"))
annotation class Foo(val p1: String, val p2: Int)
annotation class Bar(val p1: String, val p2: Int)
@Foo<caret>("", 1) class C {}