summaryrefslogtreecommitdiff
path: root/test/pending/pos/t2660.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t2660.scala')
-rw-r--r--test/pending/pos/t2660.scala25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/pending/pos/t2660.scala b/test/pending/pos/t2660.scala
deleted file mode 100644
index b1908b201b..0000000000
--- a/test/pending/pos/t2660.scala
+++ /dev/null
@@ -1,25 +0,0 @@
-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