Remove explicit type specification: don't propose for ext function type

#KT-8875 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-11-16 15:45:24 +03:00
committed by Mikhail Glukhikh
parent c8cbe05722
commit 8b2fef3812
3 changed files with 10 additions and 0 deletions
@@ -0,0 +1,4 @@
// IS_APPLICABLE: false
val foo: <caret>Int.() -> String = {
toString() + hashCode()
}