summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-08-21 12:05:23 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-08-21 12:05:23 +0200
commitbc6d4b5c1d6746528fd442d8504f30909d7e6067 (patch)
tree2423f1077563ebc3687d422d5e5639912a9dcf3a /test/pending/pos
parented230b51affa509a03298182b281afce5a74a87d (diff)
downloadscala-bc6d4b5c1d6746528fd442d8504f30909d7e6067.tar.gz
scala-bc6d4b5c1d6746528fd442d8504f30909d7e6067.tar.bz2
scala-bc6d4b5c1d6746528fd442d8504f30909d7e6067.zip
SI-7486 More tests for cycles triggered by implicit search
Moved an existing test from `pending` to `pos`. Not sure why it was moved to `pending` in the first place. Adds a new test distilled from building Scalaz with 2.10.3-RC1.
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/t7486.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/pending/pos/t7486.scala b/test/pending/pos/t7486.scala
deleted file mode 100644
index 6dd7f4c4ac..0000000000
--- a/test/pending/pos/t7486.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test{
- var locker = 0
- // remove implicit, or change to `locker = locker + 1` to make it compile.
- implicit val davyJones0 = {
- locker += 0
- 0
- }
-}