test/script/basic/JDK-8079470.js

Tue, 28 Jul 2015 14:52:34 +0530

author
sundar
date
Tue, 28 Jul 2015 14:52:34 +0530
changeset 1482
58791cd01bc9
parent 1347
7725ad692a23
permissions
-rw-r--r--

8132092: Nashorn copyright has to be updated
Reviewed-by: jlaskey, hannesw, mhaupt

sundar@1347 1 /*
sundar@1482 2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
sundar@1347 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sundar@1482 4 *
sundar@1347 5 * This code is free software; you can redistribute it and/or modify it
sundar@1347 6 * under the terms of the GNU General Public License version 2 only, as
sundar@1347 7 * published by the Free Software Foundation.
sundar@1482 8 *
sundar@1347 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sundar@1347 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sundar@1347 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sundar@1347 12 * version 2 for more details (a copy is included in the LICENSE file that
sundar@1347 13 * accompanied this code).
sundar@1482 14 *
sundar@1347 15 * You should have received a copy of the GNU General Public License version
sundar@1347 16 * 2 along with this work; if not, write to the Free Software Foundation,
sundar@1347 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sundar@1482 18 *
sundar@1347 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sundar@1347 20 * or visit www.oracle.com if you need additional information or have any
sundar@1347 21 * questions.
sundar@1347 22 */
sundar@1347 23
sundar@1347 24 /**
sundar@1347 25 * JDK-8079470: Misleading error message when explicit signature constructor is called with wrong arguments
sundar@1347 26 *
sundar@1347 27 * @test
sundar@1347 28 * @run
sundar@1347 29 */
sundar@1347 30
sundar@1347 31
sundar@1347 32 var File = Java.type("java.io.File");
sundar@1347 33 try {
sundar@1347 34 var f = new File['(String,String)']();
sundar@1347 35 } catch (e) {
sundar@1347 36 print(e);
sundar@1347 37 }
sundar@1347 38
sundar@1347 39 var Color = java.awt["Color(int,int,int)"]
sundar@1347 40 try {
sundar@1347 41 var c = new Color(255, 255)
sundar@1347 42 } catch (e) {
sundar@1347 43 print(e);
sundar@1347 44 }

mercurial