summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1909.scala
blob: 01213f62a3a5d1330983100473ca01a41c10737d (plain) (blame)
1
2
3
4
5
6
7
8
// Until #1909 is fixed, if this compiles the bytecode
// will trigger a VerifyError.  This liftings and the one
// in 1909b.scala actually happen in two different places
// (uncurry and lambdalifter.)
class Ticket1909 {
  def this(value: Int) = this()
  def this(p: String) = this(try 0)
}