Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
compileKotlinAgainstJava
/
InheritedInner.java
blob: c86d4b9d3e0ba0c4a196baa4c2e45604948462ce [
file
] [
log
] [
blame
]
package
test
;
public
class
InheritedInner
{
public
Third
.
Second
getSecond
()
{
return
null
;
}
public
static
class
First
{
public
static
class
Second
{}
}
public
static
class
Third
extends
First
{
}
}