summaryrefslogtreecommitdiff
path: root/test/files/jvm/methvsfield.java
blob: c1b2b87b48ef5330ca3a6b047482e100f0d98424 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// This should be compiled with javac and saved
// in ../lib/methvsfield.jar .
class MethVsField 
{
  int three = 3;

  int three() 
  { 
    return 3;
  }
}