IDEA-65286 JAVA: autocomplete triggers within double-value

This commit is contained in:
peter
2011-02-17 17:08:32 +01:00
parent 451520b4d0
commit 66bafd7c05
3 changed files with 16 additions and 2 deletions

View File

@@ -476,5 +476,14 @@ class JavaAutoPopupTest extends CompletionAutoPopupTestCase {
assert !lookup
}
public void testDoubleLiteralInField() {
myFixture.configureByText "a.java", """
public interface Test {
double FULL = 1.0<caret>
}"""
type 'd'
assert !lookup
}
}