Hey, I'm wondering what happens internally (compared to a equivalent java class) if I annotate a backing field of a class with an annotation, something like this:
class Foo {
@MyAnnotation var bar : String = "hello"
}
it seems that in latest 1.0-beta-rc this seems to annotate the underlying private field. Is that correct? In M14 it has annotated the getter method, right?