module-info.java revision 3408:e0bc2c27ecf3
1252190Srpaulo/*
2252190Srpaulo * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
3252190Srpaulo * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4252190Srpaulo *
5252190Srpaulo * This code is free software; you can redistribute it and/or modify it
6252190Srpaulo * under the terms of the GNU General Public License version 2 only, as
7252190Srpaulo * published by the Free Software Foundation.
8252190Srpaulo *
9252190Srpaulo * This code is distributed in the hope that it will be useful, but WITHOUT
10252190Srpaulo * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11252190Srpaulo * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12252190Srpaulo * version 2 for more details (a copy is included in the LICENSE file that
13252190Srpaulo * accompanied this code).
14252190Srpaulo *
15252190Srpaulo * You should have received a copy of the GNU General Public License version
16252190Srpaulo * 2 along with this work; if not, write to the Free Software Foundation,
17252190Srpaulo * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18252190Srpaulo *
19252190Srpaulo * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20252190Srpaulo * or visit www.oracle.com if you need additional information or have any
21252190Srpaulo * questions.
22252190Srpaulo */
23252190Srpaulo
24252190Srpaulo// key: compiler.err.duplicate.requires
25252190Srpaulo
26252190Srpaulomodule DuplicateRequires {
27252190Srpaulo     requires java.se;
28252190Srpaulo     requires java.se;
29252190Srpaulo}
30252190Srpaulo