another question about annotation process. ``` @de...
# announcements
b
another question about annotation process.
Copy code
@delegate:Property
@delegate:DependsOn("stock")
 val name: String? by Delegates.property { stock!!.cnName }
I define two annotation Property and DependsOn, when I call env.getElementsAnnotatedWith(Property.class), I does not get this property, other property just annotated with Property works well. It's a bug or just work like this way?