Generate nullability annotations on this receiver in DefaultImpls. Don't generate nullability annotations in private methods
#KT-36969 Fixed
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
|
||||
fun String.test() {}
|
||||
|
||||
private fun String.testPrivate() {}
|
||||
|
||||
var String.prop
|
||||
get() = "123"
|
||||
set(value) {}
|
||||
|
||||
private var String.propPrivate
|
||||
get() = "123"
|
||||
set(value) {}
|
||||
Reference in New Issue
Block a user