author | jfranck |
Fri, 31 Aug 2012 10:37:46 +0100 | |
changeset 13689 | 4d519199a6aa |
parent 13631 | dc1212c348f9 |
child 14062 | b7439971a094 |
permissions | -rw-r--r-- |
6710
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
1 |
/* |
13631
dc1212c348f9
7191449: update copyright year to match last edit in jdk8 langtools repository
jjh
parents:
13438
diff
changeset
|
2 |
* Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved. |
6710
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
4 |
* |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
8 |
* |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
13 |
* accompanied this code). |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
14 |
* |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
18 |
* |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
21 |
* questions. |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
22 |
*/ |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
23 |
|
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
24 |
// key: compiler.err.cant.apply.symbol.1 |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
25 |
// key: compiler.misc.varargs.argument.mismatch |
13438
83729994273a
7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents:
6710
diff
changeset
|
26 |
// key: compiler.misc.inconvertible.types |
6710
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
27 |
|
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
28 |
class VarargsArgumentMismatch { |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
29 |
void m(String s, Integer... is) {} |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
30 |
{ this.m("1", "2", "3"); } |
b14e6fe7b290
5088624: cannot find symbol message should be more intelligent
mcimadamore
parents:
diff
changeset
|
31 |
} |