summaryrefslogtreecommitdiff
path: root/test/files/neg/t0218.scala
blob: 319be82a7a65460bb61bdd7f8c8c2caf6ed99d1e (plain) (blame)
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)
  }
}