summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2010-06-15 12:48:10 +0000
committerIulian Dragos <jaguarul@gmail.com>2010-06-15 12:48:10 +0000
commit707078efcd40f9eb544018108a726a39d5bbdd06 (patch)
treedb13fb45883ed92e092b79e98d2205423de495d7 /test/files
parent0f7ee5e8f2bd094926d3a7011834c2ca426bd2ba (diff)
downloadscala-707078efcd40f9eb544018108a726a39d5bbdd06.tar.gz
scala-707078efcd40f9eb544018108a726a39d5bbdd06.tar.bz2
scala-707078efcd40f9eb544018108a726a39d5bbdd06.zip
Merged revisions 22275 via svnmerge from
https://lampsvn.epfl.ch/svn-repos/scala/scala/trunk ........ r22275 | dragos | 2010-06-14 13:27:45 +0200 (Mon, 14 Jun 2010) | 1 line Closes #3558. ........
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/spec-constr.check2
-rw-r--r--test/files/run/spec-constr.scala14
2 files changed, 16 insertions, 0 deletions
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")
+ }
+}
+