Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
AnonymousClassShouldImplementSubstitutedMethod.groovy
blob: 6c88be37b4617c40b7ec4a3f48276f42f6545387 [
file
] [
log
] [
blame
]
class
TestClass
{}
print
new
Predicate
<
TestClass
>()
{
boolean
evaluate
(
TestClass
test
)
{
return
test
!=
null
;
}
};
interface
Predicate
<
T
>
{
boolean
evaluate
(
T test
)
}