Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
compileKotlinAgainstJava
/
InheritedInner.java
blob: c86d4b9d3e0ba0c4a196baa4c2e45604948462ce [
file
]
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
{
}
}