1// Copyright 2008 The Android Open Source Project
2
3/*
4 * Test field access through reflection.
5 */
6public class Main {
7    public static void main(String[] args) {
8        Base base = new Base();
9    }
10}
11
12