e05c310cdb
#KT-2195
8 lines
222 B
Plaintext
8 lines
222 B
Plaintext
//KT-2195 error "Only safe calls are allowed ..." but it is function param (val)
|
|
package foo
|
|
|
|
private fun sendCommand<T>(errorCallback: (()->Unit)? = null) {
|
|
if (errorCallback != null) {
|
|
errorCallback()
|
|
}
|
|
} |