Configuration: move scratch tests to separate module
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// REPL_MODE: true
|
||||
|
||||
class GClass<T> {
|
||||
fun foo(t: T): T {
|
||||
return t
|
||||
}
|
||||
}
|
||||
|
||||
val g = GClass<Int>()
|
||||
g.foo(1) // RESULT: res2: kotlin.Int = 1
|
||||
Reference in New Issue
Block a user