We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CompletionTests.testBug343342
It tests completion at the | in the following CU. The linked issue is about completion in case, so I expect this is a bug.
|
package |test; public class Try { void f(int a){ String xyz = null; final String xyzz = null; switch (a){ case xy : break; } } }
I think this is what is intended to be tested (completion at the |):
package test; public class Try { void f(int a){ String xyz = null; final String xyzz = null; switch (a){ case xy| : break; } } }
The text was updated successfully, but these errors were encountered:
Hold up, I think I have a modified copy of the file, I'll need to see if the modifications were what introduced the bug.
Nope, this is how the test is in this repo as well: https://github.com/eclipse-jdt/eclipse.jdt.core/blob/master/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/CompletionTests.java#L22227
Sorry, something went wrong.
Fix CompletionTests.testBug343342
4aab753
Fixes eclipse-jdt#3781 Signed-off-by: David Thompson <davthomp@redhat.com>
Successfully merging a pull request may close this issue.
It tests completion at the
|
in the following CU. The linked issue is about completion in case, so I expect this is a bug.I think this is what is intended to be tested (completion at the
|
):The text was updated successfully, but these errors were encountered: