Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
CollectionAssignments.groovy
blob: 4cb0662e33d113ced7f6ef8cedd2f46c9936af7c [
file
] [
log
] [
blame
]
class
Pair
{}
List
<
Pair
>
otherPairs
=
new
ArrayList
<
Pair
>();
List
<
Pair
>
pairs
=
otherPairs
.
findAll
({
it
!=
null
})
List
<
Date
>
<
warning descr
=
"Cannot assign 'ArrayList<Pair>' to 'List<Date>'"
>
pairs2
</
warning
>
=
otherPairs
.
findAll
({
it
!=
null
})