Sign in
android
/
platform
/
external
/
annotation-tools
/
refs/heads/pie-qpr2-release
/
.
/
annotation-file-utilities
/
tests
/
LocalGenericShadow.java
blob: 8c6161f92063dd13c43e6c1b5ffbb4e1c32f3242 [
file
] [
log
] [
blame
] [
edit
]
package
annotator
.
tests
;
import
java
.
util
.
List
;
public
class
LocalGenericShadow
{
public
List
<
String
>
foo
=
null
;
public
void
method
()
{
List
<
Integer
>
foo
=
null
;
System
.
out
.
println
(
foo
);
}
}