module-info.java revision 3792:d516975e8110
116Salm/*
216Salm * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
31057Salm * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
416Salm *
516Salm * This code is free software; you can redistribute it and/or modify it
61057Salm * under the terms of the GNU General Public License version 2 only, as
71057Salm * published by the Free Software Foundation.
816Salm *
916Salm * This code is distributed in the hope that it will be useful, but WITHOUT
1016Salm * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1116Salm * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1216Salm * version 2 for more details (a copy is included in the LICENSE file that
1316Salm * accompanied this code).
1416Salm *
1516Salm * You should have received a copy of the GNU General Public License version
1616Salm * 2 along with this work; if not, write to the Free Software Foundation,
1716Salm * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1816Salm *
1916Salm * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2016Salm * or visit www.oracle.com if you need additional information or have any
2116Salm * questions.
2216Salm */
2316Salm
2416Salm// key: compiler.err.conflicting.exports
2516Salm
2616Salmmodule ConflictingExports {
2716Salm     exports exported;
2816Salm     exports exported;
2916Salm}
3016Salm