Saving and loading projection kind of array element type in bytecode.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun nothing(): Array<in Number> = throw Exception()
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace test
|
||||
|
||||
internal final fun nothing(): jet.Array<in jet.Number>
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun nothing(): Array<out Number> = throw Exception()
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace test
|
||||
|
||||
internal final fun nothing(): jet.Array<out jet.Number>
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun <T> nothing(): Array<out T> = throw Exception()
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace test
|
||||
|
||||
internal final fun </*0*/ T : jet.Any?>nothing(): jet.Array<out T>
|
||||
Reference in New Issue
Block a user