summaryrefslogtreecommitdiff
path: root/test/files/neg/primitive-sigs-1/A_1.scala
blob: 0dd83b5d6ac2e3513f9481cce236d51720d07a6f (plain) (blame)
1
2
3
4
5
6
7
8
9
// scala: the signature in the abstract class will use the
// upper bound as return type, which for us will be Integer
// since primitives can't appear in bounds.
abstract class AC[T <: Int] {
  def f(): T
}
class Bippy extends AC[Int] {
  def f(): Int = 5
}