Input: ```kotlin /** * Hey: * - Nullable to non-null type * * ``` * val o1: String? = someFunction() * val o2: String = o1.unsafeCast<String>() * ``` */ fun String.sup() = "hey" ``` Output (0.59): ```kotlin /** * Hey: * - Nullable to non-null type * * ``` val o1: String? = someFunction() val o2: String = o1.unsafeCast<String>() ``` */ fun String.sup() = "hey" ``` Expected: No change from input.