summaryrefslogtreecommitdiff
path: root/test/pending/neg/t7441.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/neg/t7441.scala')
-rw-r--r--test/pending/neg/t7441.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/pending/neg/t7441.scala b/test/pending/neg/t7441.scala
new file mode 100644
index 0000000000..dad7421e3f
--- /dev/null
+++ b/test/pending/neg/t7441.scala
@@ -0,0 +1,7 @@
+object Test {
+ object Bar {
+ def apply(xs: List[Any]): Int = 0
+ def test = apply(1)
+ }
+ implicit def foo = 1
+}