EA-31554 - NPE: HighlightClassUtil$ImplementAbstractClassMethodsFix.invoke (disable for "too" incomplete expressions)

This commit is contained in:
anna
2011-11-10 16:40:35 +01:00
parent f8b8b77f78
commit 1281244110
3 changed files with 44 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
// "Implement Methods" "true"
class c {
void foo() {
new I<String>(<caret>
}
}
interface I<T> {
foo(T t);
}

View File

@@ -0,0 +1,9 @@
// "Implement Methods" "false"
class c {
void foo() {
new I<String>(new String(<caret>
}
}
interface I<T> {
foo(T t);
}