This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 235402 - Code broken after 'Implement All Abstract Methods'
Summary: Code broken after 'Implement All Abstract Methods'
Status: RESOLVED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.4
Hardware: All All
: P2 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-02 11:51 UTC by Dusan Balek
Modified: 2013-09-04 01:44 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dusan Balek 2013-09-02 11:51:21 UTC
Call 'Implement All Abstract Methods' in the following code:

public class Test {
    public static void main(String[] args) {
        X<Long> x = new X<Long>();
        x.new Y<String>() {//Call 'Implement All Abstract Methods' here           
        };
    }
}

class X<T> {
    abstract class Y<R> {
        abstract R call(R arg);
    }
}
Comment 2 Quality Engineering 2013-09-04 01:44:28 UTC
Integrated into 'main-silver', will be available in build *201309040001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/54c46de7f0c6
User: Dusan Balek <dbalek@netbeans.org>
Log: Issue #235402: Code broken after 'Implement All Abstract Methods' - fixed.