Fix 3 tests

This commit is contained in:
Owen Mansel-Chan
2026-06-11 22:59:39 +02:00
parent a375e186ed
commit a4bf2b8f58
3 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
| test.kt:1:1:1:20 | C1 | Unused class: C1 is not referenced within this codebase. If not used as an external API it should be removed. |
| test.kt:1:1:1:31 | C1 | Unused class: C1 is not referenced within this codebase. If not used as an external API it should be removed. |

View File

@@ -1 +1 @@
| Test.kt:12:1:12:13 | aaaa | Class and interface names should start in uppercase. |
| Test.kt:12:1:12:24 | aaaa | Class and interface names should start in uppercase. |

View File

@@ -12,7 +12,7 @@ fun fn(x:Any?, y: Any?) {
fun fn0(o: Any?) {
if (o != null) {
o?.toString()
o.toString() // $ Alert
o?.toString() // $ Alert
o.toString()
}
}