fixes and forcing uppercase for new files

This commit is contained in:
2025-02-13 12:13:15 +06:00
parent af286d3d53
commit f7a9f2e13d
5 changed files with 40 additions and 3 deletions

View File

@@ -47,3 +47,15 @@ public suspend fun SimpleType.sample2(
): Unit = sample2(
arg1 = arg1, arg2 = with(arg22) {toInt()}, arg3 = arg3
)
public suspend fun SimpleType.sample2(arg12: Int, arg22: String): Unit = sample2(
arg12 = arg12, arg2 = with(arg22) {toInt()}
)
public suspend fun SimpleType.sample2(
arg12: Int,
arg22: String,
arg3: Boolean,
): Unit = sample2(
arg12 = arg12, arg2 = with(arg22) {toInt()}, arg3 = arg3
)