Bug 24637 - static and non-static declarations of missing type do not pass the verifier
Summary: static and non-static declarations of missing type do not pass the verifier
Status: RESOLVED WONTFIX
Alias: None
Product: gcc
Classification: Unclassified
Component: libgcj (show other bugs)
Version: 4.0.0
: P3 normal
Target Milestone: ---
Assignee: Robert Schuster
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-11-02 16:22 UTC by Robert Schuster
Modified: 2016-09-30 22:54 UTC (History)
2 users (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed: 2006-01-23 16:24:53


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Robert Schuster 2005-11-02 16:22:38 UTC
public class Foo {
   static MissingClass STATIC_MIA;
}

public class Foo2{
   MissingClass NONSTATIC_MIA;
}

Foo and Foo2 should pass the verifier if the bytecode for MissingClass is absent.
Comment 1 Andrew Pinski 2006-01-23 16:24:53 UTC
Confirmed.
Comment 2 Andrew Pinski 2016-09-30 22:54:07 UTC
Closing as won't fix as libgcj (and the java front-end) has been removed from the trunk.