| Summary: | Move static method gives illegally unqualified static invocation (move to supertype) | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Brian Miller <Brian.Miller> |
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | markus.kell.r |
| Version: | 3.5 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Build Identifier: 20090920-1017 package bug; class Base { static void bar(){} } package bug; class Derived extends Base{ static void foo(){bar();} } package bug; class Bug {} Reproducible: Always Steps to Reproduce: Please try to move method Derived.foo() to class Bug. The target class no longer compiles.