summaryrefslogtreecommitdiff
path: root/test/files/pos/t2660.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-01-28 05:46:36 +0000
committerPaul Phillips <paulp@improving.org>2010-01-28 05:46:36 +0000
commit6a79e29cd85194e4ebf1bb38732caddd88896925 (patch)
tree5630dd970809455d4a22d7cc64d99ae0549faab7 /test/files/pos/t2660.scala
parentf6c69106d3baa59479e839727acc03ae4035519d (diff)
downloadscala-6a79e29cd85194e4ebf1bb38732caddd88896925.tar.gz
scala-6a79e29cd85194e4ebf1bb38732caddd88896925.tar.bz2
scala-6a79e29cd85194e4ebf1bb38732caddd88896925.zip
Moved some test cases from pending to files sin...
Moved some test cases from pending to files since the bugs they were watching for seem to be fixed. Moved some other test cases from pending to disabled because they deceptively claim to pass while investigation reveals the ticket needs to remain open. Closes #1996, #2660.
Diffstat (limited to 'test/files/pos/t2660.scala')
-rw-r--r--test/files/pos/t2660.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/files/pos/t2660.scala b/test/files/pos/t2660.scala
new file mode 100644
index 0000000000..b1908b201b
--- /dev/null
+++ b/test/files/pos/t2660.scala
@@ -0,0 +1,25 @@
+package hoho
+
+class G
+
+class H extends G
+
+class A[T](x: T) {
+
+ def this(y: G, z: T) = {
+ this(z)
+ print(1)
+ }
+
+ def this(z: H, h: T) = {
+ this(h)
+ print(2)
+ }
+}
+
+object T {
+ def main(args: Array[String]) {
+ implicit def g2h(g: G): H = new H
+ new A(new H, 23)
+ }
+} \ No newline at end of file