IDEA-163989 IDEA reports Object.getClass() with wrong return type for generic parameters

This commit is contained in:
peter
2016-11-21 16:41:08 +01:00
parent b798253502
commit 60e0db2a5c
3 changed files with 28 additions and 1 deletions
@@ -0,0 +1,5 @@
class F {
<R extends Number> void foo(R r) {
r.getCl<caret>a
}
}