aboutsummaryrefslogtreecommitdiff
path: root/test/dotc
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-07-20 11:48:42 +0200
committerDmitry Petrashko <dark@d-d.me>2015-07-20 11:48:42 +0200
commitd07e5d1ea36e4457c3491711bc65251d4a5290b9 (patch)
treecadd7758135b15906b005dee41d5dc09882ea56e /test/dotc
parent1f45c67773c0910dd51563f61e4c8b57ac7d8e85 (diff)
parent5feab112fb7d5a5c8ae1de1bbb2ad9e430b1f452 (diff)
downloaddotty-d07e5d1ea36e4457c3491711bc65251d4a5290b9.tar.gz
dotty-d07e5d1ea36e4457c3491711bc65251d4a5290b9.tar.bz2
dotty-d07e5d1ea36e4457c3491711bc65251d4a5290b9.zip
Merge pull request #719 from dotty-staging/fix/doubledefs
Avoid crashes on double definitions
Diffstat (limited to 'test/dotc')
-rw-r--r--test/dotc/tests.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index fbf26044c..838b4dbb3 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -126,6 +126,7 @@ class tests extends CompilerTest {
@Test def neg_badAuxConstr = compileFile(negDir, "badAuxConstr", xerrors = 2)
@Test def neg_typetest = compileFile(negDir, "typetest", xerrors = 1)
@Test def neg_t1569_failedAvoid = compileFile(negDir, "t1569-failedAvoid", xerrors = 1)
+ @Test def neg_clashes = compileFile(negDir, "clashes", xerrors = 2)
@Test def neg_cycles = compileFile(negDir, "cycles", xerrors = 8)
@Test def neg_boundspropagation = compileFile(negDir, "boundspropagation", xerrors = 5)
@Test def neg_refinedSubtyping = compileFile(negDir, "refinedSubtyping", xerrors = 2)
@@ -150,7 +151,6 @@ class tests extends CompilerTest {
@Test def dotty = compileDir(dottyDir, "tools", "-deep" :: "-Ycheck-reentrant" :: allowDeepSubtypes ++ twice) // note the -deep argument
-
@Test def dotc_ast = compileDir(dotcDir, "ast")
@Test def dotc_config = compileDir(dotcDir, "config")
@Test def dotc_core = compileDir(dotcDir, "core")("-Yno-double-bindings" :: allowDeepSubtypes)// twice omitted to make tests run faster