summaryrefslogtreecommitdiff
path: root/test/files/neg/t6912.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t6912.scala')
-rw-r--r--test/files/neg/t6912.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/neg/t6912.scala b/test/files/neg/t6912.scala
new file mode 100644
index 0000000000..f2540ee8c6
--- /dev/null
+++ b/test/files/neg/t6912.scala
@@ -0,0 +1,9 @@
+object Foo1 {
+ def apply[T](a: Int = 0): Nothing = sys.error("")
+ def apply[T](z: String = ""): Nothing = sys.error("")
+}
+
+object Test {
+ // Triggered a cycle in Typers#adapt
+ def test[T]: Xxxx = Foo1[T]
+}