Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
GenericsMethodUsage.groovy
blob: d4ac8e1e381dfd9bebddca1cb34011c567813eb8 [
file
] [
log
] [
blame
]
class
Parent
<
T
>
{
public
def
doSmth
(
T p
)
{}
}
class
Child
extends
Parent
<
Float
>
{}
new
Parent
().
doSmth
(
10f
)
// ok
new
Child
().
doSmth
(
10f
)