This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: VerifyError when compiling jetty
>>>>> "Andrew" == Andrew Haley <aph@redhat.com> writes:
>> Exception in thread "main" java.lang.VerifyError: (class: Smu$Foo, method:
>> run signature: ()V) Illegal use of nonvirtual function call
>> at Smu.start(Smu.java:28)
>> at Smu.main(Smu.java:13)
Andrew> This is illegal code on our part, because we're not allowed to use
Andrew> invokepsecial on a private method. We should generate an access
Andrew> method for Smu.doFoo and use it.
Jeff Sturm submitted a PR for this bug the other day.
Tom