UAST: Properly handle annotations on local variables

This commit is contained in:
Vyacheslav Gerasimov
2017-07-13 22:42:49 +03:00
committed by Nikolay Krasko
parent 35fa8efbf3
commit 8eddb10870
16 changed files with 50 additions and 25 deletions
@@ -0,0 +1,8 @@
public final class LocalVariableWithAnnotationKt {
public static final fun foo() : void {
@TestAnnotation var bar: <ErrorType> = "lorem ipsum"
}
}
public abstract annotation TestAnnotation {
}