Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_langtools
提交
a2d92c22
D
dragonwell8_langtools
项目概览
openanolis
/
dragonwell8_langtools
通知
0
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_langtools
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a2d92c22
编写于
3月 03, 2010
作者:
J
jjg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6931126: jtreg tests not Windows friendly
Reviewed-by: darcy
上级
dd73f33c
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
13 addition
and
5 deletion
+13
-5
test/tools/javac/ThrowsIntersection_1.java
test/tools/javac/ThrowsIntersection_1.java
+2
-0
test/tools/javac/ThrowsIntersection_2.java
test/tools/javac/ThrowsIntersection_2.java
+2
-0
test/tools/javac/ThrowsIntersection_3.java
test/tools/javac/ThrowsIntersection_3.java
+2
-0
test/tools/javac/ThrowsIntersection_4.java
test/tools/javac/ThrowsIntersection_4.java
+2
-0
test/tools/javac/generics/NameOrder.java
test/tools/javac/generics/NameOrder.java
+5
-5
未找到文件。
test/tools/javac/ThrowsIntersection_1.java
浏览文件 @
a2d92c22
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
* @compile ThrowsIntersection_1.java
* @compile ThrowsIntersection_1.java
*/
*/
package
ThrowsIntersection_1
;
class
Ex1
extends
Exception
{}
class
Ex1
extends
Exception
{}
class
Ex2
extends
Exception
{}
class
Ex2
extends
Exception
{}
...
...
test/tools/javac/ThrowsIntersection_2.java
浏览文件 @
a2d92c22
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
* @compile ThrowsIntersection_2.java
* @compile ThrowsIntersection_2.java
*/
*/
package
ThrowsIntersection_2
;
class
Ex1
extends
Exception
{}
class
Ex1
extends
Exception
{}
class
Ex2
extends
Exception
{}
class
Ex2
extends
Exception
{}
class
Ex3
extends
Exception
{}
class
Ex3
extends
Exception
{}
...
...
test/tools/javac/ThrowsIntersection_3.java
浏览文件 @
a2d92c22
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
* @run compile/fail ThrowsIntersection_3.java
* @run compile/fail ThrowsIntersection_3.java
*/
*/
package
ThrowsIntersection_3
;
class
Ex1
extends
Exception
{}
class
Ex1
extends
Exception
{}
class
Ex2
extends
Exception
{}
class
Ex2
extends
Exception
{}
...
...
test/tools/javac/ThrowsIntersection_4.java
浏览文件 @
a2d92c22
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
* @run compile/fail ThrowsIntersection_4.java
* @run compile/fail ThrowsIntersection_4.java
*/
*/
package
ThrowsIntersection_4
;
// Note: This is the test that actually failed for 4042259. The others are for completeness.
// Note: This is the test that actually failed for 4042259. The others are for completeness.
class
Ex1
extends
Exception
{}
class
Ex1
extends
Exception
{}
...
...
test/tools/javac/generics/NameOrder.java
浏览文件 @
a2d92c22
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
* @summary generics: type inference failure due to a bug in ClassSymbol.isLess
* @summary generics: type inference failure due to a bug in ClassSymbol.isLess
* @author gafter
* @author gafter
*
*
* @compile
NameOrder.java
* @compile NameOrder.java
*/
*/
package
NameOrder
;
package
NameOrder
;
...
@@ -36,13 +36,13 @@ interface a {}
...
@@ -36,13 +36,13 @@ interface a {}
interface
b
{}
interface
b
{}
interface
c
{}
interface
c
{}
class
A
implements
a
,
b
{}
class
A
B
implements
a
,
b
{}
class
B
implements
c
,
a
{}
class
CA
implements
c
,
a
{}
// this is how to trigger a symptom:
// this is how to trigger a symptom:
abstract
class
C
{
abstract
class
X
{
<
T
>
T
f
(
T
t1
,
T
t2
)
{
return
null
;
}
<
T
>
T
f
(
T
t1
,
T
t2
)
{
return
null
;
}
void
g
()
{
void
g
()
{
a
x
=
f
(
new
A
(),
new
B
()
);
a
x
=
f
(
new
A
B
(),
new
CA
()
);
}
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录