Sign in
apache
/
netbeans
/
cb4112b5ce7c7bbebbf31acfd0220d54accf4d9c
/
.
/
java
/
java.hints
/
test
/
unit
/
data
/
javahints
/
TestShortErrors8.java
blob: ffa43feb3c3f3c81c8ba95275f9f6e1b45a5ee5e [
file
] [
log
] [
blame
]
package
javahints
;
public
class
TestShortErrors8
{
public
TestShortErrors8
()
{
int
y
=
0
;
TestShortErrors8
t
=
null
;
new
Runnable
()
{
public
void
run
()
{
System
.
err
.
println
(
y
);
System
.
err
.
println
(
t
.
y
);
}
};
}
private
int
y
;
}