Fix MovePropertyToConstructorIntention applicability and type rendering
#KT-17238 Fixed (cherry picked from commit 7f9d88a)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import kotlin.reflect.KFunction3
|
||||
|
||||
class Baz
|
||||
|
||||
fun foo(a: Int, b: String, d: Baz) {
|
||||
|
||||
}
|
||||
|
||||
class TestClass(val prop1: KFunction3<@ParameterName(name = "a") Int, @ParameterName(name = "b") String, @ParameterName(name = "d") Baz, Unit> = ::foo) {
|
||||
}
|
||||
Reference in New Issue
Block a user