88d307d52c
- `testConflictingOverloadsAtTopLevel` is currently disabled in FIR because it fails with a mismatch between diagnostics from the file and the individual elements. It will be enabled in the next commit. ^KT-62899
11 lines
129 B
Kotlin
Vendored
11 lines
129 B
Kotlin
Vendored
@file:Suppress("CONFLICTING_OVERLOADS")
|
|
|
|
class SomeClass
|
|
|
|
fun someFun(): SomeClass {
|
|
return SomeClass()
|
|
}
|
|
|
|
fun someFun() {
|
|
}
|