eclipse-jdt / eclipse-jdt/eclipse.jdt.core
`CompletionTests.testBug343342` makes no sense
Open
- Dominant language
- Java
- Stars
- 237
- Forks
- 195
- Avg merge
- 1d 12h
- Merged PRs (30d)
- 47
Description
It tests completion at the `|` in the following CU. The linked issue is about completion in case, so I expect this is a bug.
```java
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 `|`):
```java
package test;
public class Try {
void f(int a){
String xyz = null;
final String xyzz = null;
switch (a){
case xy| : break;
}
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.