kill redeclaration handler in ClassDescriptor

This commit is contained in:
Stepan Koltsov
2012-02-19 22:02:37 +04:00
parent ca8cf6cb49
commit ea8eb7412a
9 changed files with 68 additions and 25 deletions
@@ -1,9 +1,9 @@
package override.generics
abstract class MyAbstractClass<T> {
abstract val <!REDECLARATION!>pr<!> : T
abstract val pr : T
}
abstract class MyLegalAbstractClass2<T>(t : T) : MyAbstractClass<Int>() {
<!CONFLICTING_OVERLOADS!>val <R> <!REDECLARATION!>pr<!> : T = t<!>
<!CONFLICTING_OVERLOADS!>val <R> pr : T = t<!>
}