Test for KT-488 Implement members breaks in generic classes

#KT-488 obsolete
This commit is contained in:
Evgeny Gerashchenko
2013-03-14 17:46:55 +04:00
parent 735f06e78f
commit 53f775e98d
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,5 @@
// from KT-488
class MyClass<A: Comparable<A>> : Iterable<A> {
<caret>
}
@@ -0,0 +1,8 @@
// from KT-488
class MyClass<A: Comparable<A>> : Iterable<A> {
public override fun iterator(): Iterator<A> {
throw UnsupportedOperationException()
}
}