Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
redeclarations
/
SingletonAndFunctionSameName.kt
blob: cfe27ced1de7fd24296bae150b138409166706a6 [
file
]
fun
Foo
()
=
42
object
Foo
{
fun
Bar
()
=
239
object
Bar
}
<!
CONFLICTING_OVERLOADS
!>
fun
En
()<!>
=
239
enum
class
<!
CONFLICTING_OVERLOADS
!>
En
<!>
{
ENTRY
,
SUBCLASS
{
};
fun ENTRY
()
=
42
fun SUBCLASS
()
=
ENTRY
()
}