IDEA-142416 (fixed parsing of annotated fully-qualified types in assignment statements)

This commit is contained in:
Roman Shevchenko
2015-07-09 16:29:04 +03:00
parent a73256bf9a
commit 83674908b6
4 changed files with 39 additions and 5 deletions

View File

@@ -126,7 +126,6 @@ class Outer {
}
static class This extends Super {
void superField() {
Outer.<error descr="Annotations are not allowed here">@TA</error> This.super.aField = 0;
IntFunction<Super> f = Outer.<error descr="Annotations are not allowed here">@TA</error> This.super::getField;
}
}