test/script/basic/JDK-8058615.js

Tue, 21 Mar 2017 13:41:57 -0700

author
asaha
date
Tue, 21 Mar 2017 13:41:57 -0700
changeset 2160
1df40fe54cd6
parent 1017
e83ceda86582
permissions
-rw-r--r--

Merge

sundar@1017 1 /*
sundar@1017 2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
sundar@1017 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sundar@1017 4 *
sundar@1017 5 * This code is free software; you can redistribute it and/or modify it
sundar@1017 6 * under the terms of the GNU General Public License version 2 only, as
sundar@1017 7 * published by the Free Software Foundation.
sundar@1017 8 *
sundar@1017 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sundar@1017 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sundar@1017 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sundar@1017 12 * version 2 for more details (a copy is included in the LICENSE file that
sundar@1017 13 * accompanied this code).
sundar@1017 14 *
sundar@1017 15 * You should have received a copy of the GNU General Public License version
sundar@1017 16 * 2 along with this work; if not, write to the Free Software Foundation,
sundar@1017 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sundar@1017 18 *
sundar@1017 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sundar@1017 20 * or visit www.oracle.com if you need additional information or have any
sundar@1017 21 * questions.
sundar@1017 22 */
sundar@1017 23
sundar@1017 24 /**
sundar@1017 25 * JDK-8058615: Overload resolution ambiguity involving ConsString
sundar@1017 26 *
sundar@1017 27 * @test
sundar@1017 28 * @run
sundar@1017 29 */
sundar@1017 30
sundar@1017 31 var strw = new java.io.StringWriter();
sundar@1017 32 var bufw = new java.io.BufferedWriter(strw);
sundar@1017 33 var s = "hello ";
sundar@1017 34 bufw.write(s + "world");
sundar@1017 35 bufw.close();
sundar@1017 36 print(strw.toString());

mercurial