Files
openide/java/java-tests/testData/codeInsight/completion/normal/AssignmentPrimitiveLiteral_after.java
Tagir Valeev 5fe4a9b691 GuessManagerImpl: box values on fast-path; disable DFA on primitive types at all
Fixes IDEA-189340 Does not show Number methods during auto completion
2018-04-05 11:46:42 +07:00

7 lines
90 B
Java

class Foo {
void test() {
Number x = 10;
return x.longValue()
}
}