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
15 lines
265 B
Kotlin
Vendored
15 lines
265 B
Kotlin
Vendored
class SomeClass
|
|
|
|
class OtherClass {
|
|
class NestedClass {
|
|
@Suppress("CONFLICTING_OVERLOADS")
|
|
fun someFun(): SomeClass {
|
|
return SomeClass()
|
|
}
|
|
|
|
@Suppress("CONFLICTING_OVERLOADS")
|
|
fun someFun() {
|
|
}
|
|
}
|
|
}
|