KT-12623 Fixed ISE: Type parameter ... not found for public fun ...

#KT-12623 Fixed
Also EA-72653 fixed.
This commit is contained in:
Stanislav Erokhin
2016-06-22 21:25:55 +03:00
parent 3eeccb407e
commit 7c2825b397
7 changed files with 86 additions and 3 deletions
@@ -0,0 +1 @@
<problems/>
@@ -0,0 +1 @@
// INSPECTION_CLASS: org.jetbrains.kotlin.idea.inspections.OverridingDeprecatedMemberInspection
@@ -0,0 +1,5 @@
// KT-12623 ISE: Type parameter ... not found for public fun ...
fun <T> boo<X>() {}
fun <T, C: MutableCollection<T>> Collection<partitionTo(first: C, second: C, f:(T) -> Boolean): Pair<C, C> = TODO()