Create from usage: make new member function/property private by default
#KT-6689 Fixed
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ import kotlin.properties.ReadOnlyProperty
|
||||
class A<T>(val t: T) {
|
||||
val x: A<Int> by foo(t, "")
|
||||
|
||||
fun foo(t: T, s: String): ReadOnlyProperty<A<T>, A<Int>> {
|
||||
private fun foo(t: T, s: String): ReadOnlyProperty<A<T>, A<Int>> {
|
||||
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user