Sign in
rust
/
rust-lang
/
gcc
/
76c5e4bca2855f289206c436dbdfd00b1e3b172d
/
.
/
libjava
/
testsuite
/
libjava.compile
/
pr26042.java
blob: 485b36a5a54030957ffa6eb487fe198be357bd31 [
file
] [
log
] [
blame
]
class
One
{
long
l
;
// no ICE if this is int, not long
int
b
;
// no ICE if this line is gone; type doesn't matter
}
public
class
pr26042
{
class
Three
extends
One
{
}
Three
three
()
{
return
new
Three
();
}
}