summaryrefslogblamecommitdiff
path: root/test/files/pos/tinondefcons.scala
blob: 6be6f17a9760f158f81d4f15df831a4b814cec64 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                          
// Tests instantiating a type parameter when a non-default
// constructor is used.


class Atom[T](b: Boolean) {
  def this(s: T) = this(true)
}


object AtomTest {
  val x = new Atom("hello")
}