Suggest quick-fixes for SIGNED_CONSTANT_CONVERTED_TO_UNSIGNED
#KT-27590 Fixed
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// "Change parameter 'u' type of function 'takeUInt' to 'Int'" "true"
|
||||
// WITH_RUNTIME
|
||||
|
||||
fun takeUInt(u: UInt) = 0
|
||||
|
||||
val b = takeUInt(<caret>1)
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Change parameter 'u' type of function 'takeUInt' to 'Int'" "true"
|
||||
// WITH_RUNTIME
|
||||
|
||||
fun takeUInt(u: Int) = 0
|
||||
|
||||
val b = takeUInt(1)
|
||||
Reference in New Issue
Block a user