From f492b003234d3c6e03fb0c1e71ac1eb5269f66a4 Mon Sep 17 00:00:00 2001 From: Iulian Dragos Date: Mon, 14 Jun 2010 11:27:45 +0000 Subject: Closes #3558. --- test/files/run/spec-constr.check | 2 ++ test/files/run/spec-constr.scala | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 test/files/run/spec-constr.check create mode 100644 test/files/run/spec-constr.scala (limited to 'test/files') diff --git a/test/files/run/spec-constr.check b/test/files/run/spec-constr.check new file mode 100644 index 0000000000..29d70d9de8 --- /dev/null +++ b/test/files/run/spec-constr.check @@ -0,0 +1,2 @@ +hello? +goodbye diff --git a/test/files/run/spec-constr.scala b/test/files/run/spec-constr.scala new file mode 100644 index 0000000000..4c80d0954d --- /dev/null +++ b/test/files/run/spec-constr.scala @@ -0,0 +1,14 @@ +object Test { + class E[@specialized(Int) A](var f: A => Boolean) { + def this() = this(null) + + println("hello?") + if (f == null) f = { _ => false } + } + + def main(args: Array[String]) { + new E[Int] + println("goodbye") + } +} + -- cgit v1.2.3