aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/rh175833.java
blob: 6bdec57cb6e782ee41ee75f831dcaf1732fa9f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Follow-on to PR 25429
public class rh175833
{
  private static final Object CONST  = new Object();
    class I {
        public Object f () {
	  // We need an accessor here.
	  return CONST;
        }
    }

  public static void main(String[] args) { }
}