module-info.java revision 3792:d516975e8110
148905Srnordier/*
248905Srnordier * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
348905Srnordier * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
448905Srnordier *
548905Srnordier * This code is free software; you can redistribute it and/or modify it
648905Srnordier * under the terms of the GNU General Public License version 2 only, as
748905Srnordier * published by the Free Software Foundation.
848905Srnordier *
948905Srnordier * This code is distributed in the hope that it will be useful, but WITHOUT
1048905Srnordier * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1148905Srnordier * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1248905Srnordier * version 2 for more details (a copy is included in the LICENSE file that
1348905Srnordier * accompanied this code).
1448905Srnordier *
1548905Srnordier * You should have received a copy of the GNU General Public License version
1648905Srnordier * 2 along with this work; if not, write to the Free Software Foundation,
1748905Srnordier * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1848905Srnordier *
1948905Srnordier * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2048905Srnordier * or visit www.oracle.com if you need additional information or have any
2148905Srnordier * questions.
2248905Srnordier */
2348905Srnordier
2448905Srnordier// key: compiler.err.conflicting.exports.to.module
2548905Srnordier
2648905Srnordiermodule ConflictingExports {
2748905Srnordier     exports exported to java.base, java.base;
2848905Srnordier}
2948905Srnordier