Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inner
/
InnerClassNameClash.kt
blob: c7f4e786e527c6b6e3739d4a94aeec708411ed48 [
file
]
// FIR_IDENTICAL
package
test
class
B
{
class
B
{
fun foo
(
b
:
B
.
C
)
{
}
class
C
{
}
}
}