summaryrefslogtreecommitdiff
path: root/test/files/run/spec-early.scala
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2010-04-27 15:09:00 +0000
committerIulian Dragos <jaguarul@gmail.com>2010-04-27 15:09:00 +0000
commit622c15815f8cfa93ab6c3b0e3ab49095988dd51f (patch)
treec668650caa98bbcb6c3e694713452d4437c329a8 /test/files/run/spec-early.scala
parentf99b3ceac6465c630374e5bd5b680f4b99abc9b7 (diff)
downloadscala-622c15815f8cfa93ab6c3b0e3ab49095988dd51f.tar.gz
scala-622c15815f8cfa93ab6c3b0e3ab49095988dd51f.tar.bz2
scala-622c15815f8cfa93ab6c3b0e3ab49095988dd51f.zip
Fixed construction of specialized classes in th...
Fixed construction of specialized classes in the presence of side-effects and non-trivial initializers. Review by odersky.
Diffstat (limited to 'test/files/run/spec-early.scala')
-rw-r--r--test/files/run/spec-early.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/spec-early.scala b/test/files/run/spec-early.scala
new file mode 100644
index 0000000000..84a8983f8c
--- /dev/null
+++ b/test/files/run/spec-early.scala
@@ -0,0 +1,15 @@
+trait Tr
+
+class Foo[@specialized(Int) T](_x: T) extends {
+ val bar = "abc"
+ val baz = "bbc"
+} with Tr {
+ val x = _x
+ println(x)
+ println(bar)
+}
+
+object Test extends Application {
+ new Foo("a")
+ new Foo(42)
+}