Sign in
android
/
platform
/
external
/
annotation-tools
/
refs/heads/pie-qpr2-release
/
.
/
annotation-file-utilities
/
tests
/
GenericArg.java
blob: 82806a091c02119ab10776a27598b13605515ea9 [
file
] [
log
] [
blame
] [
edit
]
public
class
GenericArg
<
X
>
{
void
mp
(
X p
)
{
Object
l
;
}
X mr
()
{
Object
r
;
return
null
;
}
<
Y
extends
Number
>
void
foo
(
Y p
)
{
Object
k
;
}
<
Z
extends
Integer
>
Z bar
()
{
Integer
j
;
return
null
;
}
class
Tricky
{
void
argh
(
X p
)
{
Object
a
;
}
}
}