aboutsummaryrefslogtreecommitdiff
path: root/tests/run/virtpatmat_partial_backquoted.scala
blob: 21f686dcf831e58ba0747e92e81ff4813593f32f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
object Test extends dotty.runtime.LegacyApp {
  class Region { override def toString = "You got me!" }
  class SymbolType
  case class SymbolInfo(tp: SymbolType, regions: List[Region], x: Any)

  def findRegionsWithSymbolType(rawSymbolInfos: Seq[SymbolInfo], symbolType: SymbolType): Set[Region] =
    rawSymbolInfos.collect { case SymbolInfo(`symbolType`, regions, _) => regions }.flatten.toSet

  val stp = new SymbolType
  val stp2 = new SymbolType
  println(findRegionsWithSymbolType(List(SymbolInfo(stp2, List(), null), SymbolInfo(stp, List(new Region), null)), stp))
}