summaryrefslogblamecommitdiff
path: root/test/pending/run/t5256g.scala
blob: 6158a9281df1e26ff53a467f00fbd171bae5c888 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                         
import scala.reflect.mirror._

class A
trait B

object Test extends App {
  val mutant = new A with B
  val c = classToType(mutant.getClass)
  println(c)
  println(c.typeSymbol == classToSymbol(mutant.getClass))
}