0N/A/*
0N/A * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
0N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A * or visit www.oracle.com if you need additional information or have any
0N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6326754
0N/A * @summary Compiler will fail to handle -Xmaxerrs with -ve numbers
0N/A *
0N/A * @compile/fail/ref=T6326754.out -XDrawDiagnostics -Xmaxerrs -1 T6326754.java
0N/A * @compile/fail/ref=T6326754.out -XDrawDiagnostics -Xmaxerrs 0 T6326754.java
0N/A * @compile/fail/ref=T6326754.out -XDrawDiagnostics -Xmaxerrs 10 T6326754.java
0N/A * @compile/fail/ref=T6326754.out -XDrawDiagnostics T6326754.java
0N/A */
0N/Aclass TestConstructor<T,K>{
0N/A T t;
0N/A K k;
public TestConstructor(T t,K k){
this.t =t;
}
public TestConstructor(K k){
this.k = k;
this.t = null;
}
public TestConstructor(T t){
this.t=t;
this.k=null;
}
public void setT(T t){
this.t=t;
this.k=null;
}
public void setT(K k){
this.k = k;
this.t = null;
}
public void setT(T t,K k){
this.t = t;
this.k = k;
}
}
class TestC<T>{
T t;
public <T>void setT(T t){
this.t = t;
}
}
public class T6326754{
public static void main(String... arg){
TestC tC =new TestC();
tC.setT();
TestConstructor tc = new TestConstructor("saaa");
tc.setT("sasa");
TestC<Integer> tC1 = new TestC();
tC1.setT(545);
}
}