blob: d217b342bfc14f8b4989f3d178c23b69cea1006f [file] [log] [blame]
interface G<T> {
fun foo(t : T) : T
}
class GC() : G<Int> {
override fun foo(t: Int): Int {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
}