| Summary: | [ast rewrite] Extract superclass gives illegal result. | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Brian Miller <Brian.Miller> |
| Component: | Core | Assignee: | David Audel <david_audel> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | martinae |
| Version: | 3.4 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | stalebug | ||
The result is:
package s;
import java.util.*;
abstract class
Bug //LINE 3
extends Wimplements Observer{}
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie. |
Build ID: I20080330-1350 (3.4M6) Steps To Reproduce: 1. Select identifier Bug on LINE 3. 2. Launch the extract superclass wizard. 3. On the wizard's 1st page, name the superclass and press Finish. The result doesn't compile. -------------------- Bug.java -------------------- import java.util.*; abstract class Bug //LINE 3 extends Stack<String>implements Observer{}