enable class content serialization in ReadClassDataTest; add test for function params with upper bounds
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
namespace test
|
||||
|
||||
fun <A : java.lang.Number> uno() = 1
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace test
|
||||
|
||||
fun <A> tres() where A : java.lang.Number, A : java.lang.CharSequence = 1
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace test
|
||||
|
||||
fun <A : java.lang.CharSequence> dos() = 1
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace test
|
||||
|
||||
fun <A> cuatro() where A : java.lang.CharSequence, A : java.lang.Number = 1
|
||||
Reference in New Issue
Block a user