summaryrefslogblamecommitdiff
path: root/test/files/jvm/methvsfield.java
blob: c1b2b87b48ef5330ca3a6b047482e100f0d98424 (plain) (tree)
1
2
3
4
5
6
7
8

                                               
                  


                

              


             
// This should be compiled with javac and saved
// in ../lib/methvsfield.jar .
class MethVsField 
{
  int three = 3;

  int three() 
  { 
    return 3;
  }
}