summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-04-04 18:00:26 +0000
committerMartin Odersky <odersky@gmail.com>2008-04-04 18:00:26 +0000
commitf9a68fb01de1edd3fa620912bbe75897133cc81b (patch)
treeb75321225503a24060ce665cdbeb3e1c95d7eb09 /test/files
parent768d107385af8f700be33b22444e537091d7f0ef (diff)
downloadscala-f9a68fb01de1edd3fa620912bbe75897133cc81b.tar.gz
scala-f9a68fb01de1edd3fa620912bbe75897133cc81b.tar.bz2
scala-f9a68fb01de1edd3fa620912bbe75897133cc81b.zip
(1) more changes for dynamic cycle detection of...
(1) more changes for dynamic cycle detection of implicits 2) change (to wildcard scoping in types 3) suppress $tag generation for purely (abstract traits 4) increase stacksize for sabbus to 32m (otherwise (problems on Windows)
Diffstat (limited to 'test/files')
-rw-r--r--test/files/neg/bug696.check3
-rw-r--r--test/files/neg/divergent-implicit.check17
-rw-r--r--test/files/neg/divergent-implicit.scala16
-rwxr-xr-xtest/files/run/existentials.scala2
4 files changed, 36 insertions, 2 deletions
diff --git a/test/files/neg/bug696.check b/test/files/neg/bug696.check
index 7d9d2687b0..623c95f62c 100644
--- a/test/files/neg/bug696.check
+++ b/test/files/neg/bug696.check
@@ -1,4 +1,5 @@
-bug696.scala:4: error: no implicit argument matching parameter type TypeUtil0.Type[Any] was found.
+bug696.scala:4: error: diverging implicit expansion for type TypeUtil0.Type[Any]
+starting with method WithType in object TypeUtil0
as[Any](null);
^
one error found
diff --git a/test/files/neg/divergent-implicit.check b/test/files/neg/divergent-implicit.check
new file mode 100644
index 0000000000..8d57f92716
--- /dev/null
+++ b/test/files/neg/divergent-implicit.check
@@ -0,0 +1,17 @@
+divergent-implicit.scala:4: error: diverging implicit expansion for type (Int) => B
+starting with method cast in object Test1
+ val x1: String = 1
+ ^
+divergent-implicit.scala:5: error: diverging implicit expansion for type (Int) => String
+starting with method cast in object Test1
+ val x2: String = cast[Int, String](1)
+ ^
+divergent-implicit.scala:14: error: diverging implicit expansion for type (Test2.Baz) => Test2.Bar
+starting with method baz2bar in object Test2
+ val x: Bar = new Foo
+ ^
+divergent-implicit.scala:15: error: diverging implicit expansion for type (Test2.Foo) => Test2.Bar
+starting with method foo2bar in object Test2
+ val y: Bar = new Baz
+ ^
+four errors found
diff --git a/test/files/neg/divergent-implicit.scala b/test/files/neg/divergent-implicit.scala
new file mode 100644
index 0000000000..4a356d54f7
--- /dev/null
+++ b/test/files/neg/divergent-implicit.scala
@@ -0,0 +1,16 @@
+object Test1 {
+ implicit def cast[A, B](x: A)(implicit c: A => B): B = c(x)
+
+ val x1: String = 1
+ val x2: String = cast[Int, String](1)
+}
+object Test2 {
+ class Foo
+ class Bar
+ class Baz
+ implicit def foo2bar(x: Foo)(implicit baz2bar: Baz => Bar): Bar = baz2bar(new Baz)
+ implicit def baz2bar(x: Baz)(implicit foo2bar: Foo => Bar): Bar = foo2bar(new Foo)
+
+ val x: Bar = new Foo
+ val y: Bar = new Baz
+}
diff --git a/test/files/run/existentials.scala b/test/files/run/existentials.scala
index 9dc9855a75..42711df5f2 100755
--- a/test/files/run/existentials.scala
+++ b/test/files/run/existentials.scala
@@ -62,7 +62,7 @@ object Test extends Application {
case _ =>
}
- def fooW(x : Counter[_] { def name : String }) = x match {
+ def fooW(x : Counter[T] { def name : String } forSome { type T }) = x match {
case ctr: Counter[t] =>
val c = ctr.newCounter
println(ctr.name+" "+ctr.get(ctr.inc(ctr.inc(c))))