blob: 78778d830f4ca17f5257a3660a5e4fb5a9fa640b [file]
class Outer<T> {
class Nested {
fun foo(t: T) = t
}
class Nested2<T> {
fun foo(t: T) = t
}
inner class Inner {
fun foo(t: T) = t
}
}