APT: Add more compiler plugin tests

This commit is contained in:
Yan Zhulanow
2015-05-19 21:56:45 +03:00
parent 594988db51
commit 921017367a
11 changed files with 105 additions and 14 deletions
@@ -0,0 +1,15 @@
package org.test
import javax.inject.*
public class SomeClass {
private fun a() {
object : Any() {
[Inject]
val property: Int = 5
}
}
}