aboutsummaryrefslogtreecommitdiff
path: root/test/dotc/tests.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-12-17 23:09:22 +0100
committerMartin Odersky <odersky@gmail.com>2013-12-17 23:27:43 +0100
commit9e8d0709e9f43fbb1dc40baaab4f0891538d8e9c (patch)
tree2aaa37431319ba479fe406a507349511735d2ac9 /test/dotc/tests.scala
parent9a839d706291fdd57aeb48c3f64654afbd144a83 (diff)
downloaddotty-9e8d0709e9f43fbb1dc40baaab4f0891538d8e9c.tar.gz
dotty-9e8d0709e9f43fbb1dc40baaab4f0891538d8e9c.tar.bz2
dotty-9e8d0709e9f43fbb1dc40baaab4f0891538d8e9c.zip
Special handling of implicit members.
The previous treatment would force all members, causing cyclic reference errors. We fix it by filtering early in computeMemberNames itself for implicits.
Diffstat (limited to 'test/dotc/tests.scala')
-rw-r--r--test/dotc/tests.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index 31fe8051e..72167c53e 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -30,6 +30,7 @@ class tests extends CompilerTest {
@Test def pos_typedidents() = compileFile(posDir, "typedidents")
@Test def pos_assignments() = compileFile(posDir, "assignments")
@Test def pos_packageobject() = compileFile(posDir, "packageobject")
+ @Test def pos_overloaded() = compileFile(posDir, "overloaded")
@Test def neg_blockescapes() = compileFile(negDir, "blockescapesNeg", xerrors = 2)
@Test def neg_typedapply() = compileFile(negDir, "typedapply", xerrors = 4)