Skip to content

Commit

Permalink
* src/test/clojure/clojure/core/match/test/core.clj: add MATCH-43 (co…
Browse files Browse the repository at this point in the history
…mmented out) to the tests
  • Loading branch information
swannodette committed Dec 28, 2011
1 parent 5d77067 commit 40d2694
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/test/clojure/clojure/core/match/test/core.clj
Expand Up @@ -593,3 +593,13 @@
[[2]] :a3
:else :a4)
:a3)))

;; MATCH-43
#_(deftest match-order-8
(is (= (let [xs [:c]]
(match xs
[:a] :a0
[:b b] :a1
[:c] :a2
:else :a3))
:a2)))

0 comments on commit 40d2694

Please sign in to comment.