summaryrefslogtreecommitdiff
path: root/test/files/neg/t0218.scala
blob: 3d1f52e39a4a49d9983989568930fe173b193f24 (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) 
  }
}