summaryrefslogblamecommitdiff
path: root/test/files/neg/bug1909.scala
blob: 4fae4e5414634b2144cb3890ece1e54d524cfb08 (plain) (tree)
1
2
3
4
5
6





                                                      
// Until #1909 is fixed, if this compiles the bytecode
// will trigger a VerifyError.
class Class {
  def this(value: Int) = this()
  def this(p: String) = this(try 0)
}