aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6204-b.scala
blob: 62f2b5d5c533e0bfe1d91d54882858d5a7f1759b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import scala.reflect.runtime.universe._

object Bosh {
  def Besh: Unit = {
    new {
      val t = typeOf[Option[_]]
      val x = t
    }
  }
}