Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
redeclarations
/
kotlinObjectJavaClassNestedRedeclaration.kt
blob: 93abd4f1770e84f8e03c68ec7208078f61c3e434 [
file
]
// RUN_PIPELINE_TILL: FRONTEND
// FILE: test/A.kt
package
test
object
A
{
class
Nested
}
// FILE: test/A.java
package
test
;
public
class
A
{
public
static
class
Nested
{
}
}
/* GENERATED_FIR_TAGS: classDeclaration, nestedClass, objectDeclaration */