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