summaryrefslogblamecommitdiff
path: root/test/files/jvm/methvsfield.java
blob: dadc98669ad5082b98aafb6e07e4e702885d976a (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;
  }
}