980N/A/*
980N/A * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
980N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
980N/A *
980N/A * This code is free software; you can redistribute it and/or modify it
980N/A * under the terms of the GNU General Public License version 2 only, as
980N/A * published by the Free Software Foundation.
980N/A *
980N/A * This code is distributed in the hope that it will be useful, but WITHOUT
980N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
980N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
980N/A * version 2 for more details (a copy is included in the LICENSE file that
980N/A * accompanied this code).
980N/A *
980N/A * You should have received a copy of the GNU General Public License version
980N/A * 2 along with this work; if not, write to the Free Software Foundation,
980N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
980N/A *
980N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
980N/A * or visit www.oracle.com if you need additional information or have any
980N/A * questions.
980N/A */
980N/A
980N/Apackage pkg;
980N/A
980N/Aimport java.util.Map;
980N/A
980N/A/** Contains {@link #foo} */
980N/Apublic class NestedGenerics {
980N/A public static <A> void foo(Map<A, Map<A, A>> map) {}
980N/A}