Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
DuplicateMethod.kt
blob: 8b6649cd6e6d9d6989699871f17cf8c652e4f05c [
file
]
// FIR_IDENTICAL
interface
Some
{
fun test
()
}
class
SomeImpl
:
Some
{
<!
CONFLICTING_OVERLOADS
!>
override
fun test
()<!>
{}
<!
CONFLICTING_OVERLOADS
!>
override
fun test
()<!>
{}
}