module-info.java revision 3792:d516975e8110
1185222Ssam/*
2185222Ssam * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
3185222Ssam * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4185222Ssam *
5185222Ssam * This code is free software; you can redistribute it and/or modify it
6185222Ssam * under the terms of the GNU General Public License version 2 only, as
7185222Ssam * published by the Free Software Foundation.
8185222Ssam *
9185222Ssam * This code is distributed in the hope that it will be useful, but WITHOUT
10185222Ssam * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11185222Ssam * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12185222Ssam * version 2 for more details (a copy is included in the LICENSE file that
13185222Ssam * accompanied this code).
14185222Ssam *
15185222Ssam * You should have received a copy of the GNU General Public License version
16185222Ssam * 2 along with this work; if not, write to the Free Software Foundation,
17185222Ssam * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18185222Ssam *
19185222Ssam * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20185222Ssam * or visit www.oracle.com if you need additional information or have any
21185222Ssam * questions.
22185222Ssam */
23185222Ssam
24185222Ssam// key: compiler.err.conflicting.opens
25185222Ssam
26185222Ssammodule ConflictingOpens {
27185222Ssam     opens opened;
28185222Ssam     opens opened;
29185222Ssam}
30185222Ssam