summaryrefslogblamecommitdiff
path: root/test/files/neg/t0218.scala
blob: 282e85e81463a3b72f6d42e245a54bdf94fdeb62 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                            
trait APQ {
  class Placement {
  }

  type P <: Placement

  type PP = P

  def pq(numQueens: int, numRows: int) : List[Placement] = {
    List(new PP)
  }
}