blob: 2a707a5c6f38371a0299da52d3cbf18abeaf671d [file]
class Outer<T> {
class Nested {
fun foo(t: <!UNRESOLVED_REFERENCE!>T<!>) = t
}
class Nested2<T> {
fun foo(t: T) = t
}
inner class Inner {
fun foo(t: T) = t
}
}