9 lines
78 B
Plaintext
9 lines
78 B
Plaintext
trait T {
|
|
val v : Int
|
|
}
|
|
|
|
class GC() : T {
|
|
|
|
override val v : Int = 0
|
|
}
|