A.java revision 0:9a66ca7c79fa
177943Sdfr/*
277943Sdfr * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
377943Sdfr * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4163898Smarcel *
5163898Smarcel * This code is free software; you can redistribute it and/or modify it
6163898Smarcel * under the terms of the GNU General Public License version 2 only, as
7163898Smarcel * published by the Free Software Foundation.
8163898Smarcel *
9163898Smarcel * This code is distributed in the hope that it will be useful, but WITHOUT
10163898Smarcel * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11163898Smarcel * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1277943Sdfr * version 2 for more details (a copy is included in the LICENSE file that
1377943Sdfr * accompanied this code).
1477943Sdfr *
1577943Sdfr * You should have received a copy of the GNU General Public License version
1677943Sdfr * 2 along with this work; if not, write to the Free Software Foundation,
1777943Sdfr * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1877943Sdfr *
1977943Sdfr * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
2077943Sdfr * CA 95054 USA or visit www.sun.com if you need additional information or
2177943Sdfr * have any questions.
2277943Sdfr */
2377943Sdfr
2477943Sdfrimport p.*;
2577943Sdfr
2677943Sdfrclass A { }
27163898Smarcel
28163898Smarcelclass Foo {
29163898Smarcel    class Baz { }
30163898Smarcel    Runnable r = new Runnable() { public void run() { } };
31163898Smarcel
32163898Smarcel    B b;
3377943Sdfr}
34163898Smarcel