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