Implement rendering of raw types
Also add some clarification in spec
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
package foo;
|
||||
|
||||
public abstract class A implements B {
|
||||
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package foo;
|
||||
import java.util.*;
|
||||
|
||||
public interface B<T> {
|
||||
B<String> foo(List<String> x, String y);
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import foo.A
|
||||
|
||||
class C : A() {
|
||||
<caret>
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import foo.A
|
||||
import foo.B
|
||||
|
||||
class C : A() {
|
||||
override fun foo(x: MutableList<Any?>?, y: String?): B<*>? {
|
||||
<selection><caret>throw UnsupportedOperationException()</selection>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user