]> hydra-www.ietfng.org Git - dyna2/commitdiff
Comment out compile-failing K3 test case
authorNathaniel Wesley Filardo <nwf@cs.jhu.edu>
Thu, 20 Dec 2012 04:23:40 +0000 (23:23 -0500)
committerNathaniel Wesley Filardo <nwf@cs.jhu.edu>
Thu, 20 Dec 2012 04:23:40 +0000 (23:23 -0500)
src/Dyna/Backend/K3/Selftest.hs

index 3088ab6232b85bb388167acbc749db30de7bf52c..4c0636ce6c2cd72ea07dbbac3d24e434de97e8d2 100644 (file)
@@ -49,11 +49,11 @@ case_mfn = e @=? renderExp k3
     -- the type of a from the occurrance of "a + Int".
   k3 = eLam (PVar tInt) (\a -> eNeg $ eAdd a $ cInt 1)
 
-case_pairfn :: Assertion
-case_pairfn = e @=? renderExp k3
- where
-  e  = "\\(x0:int,x1:bool) -> x0"
-  k3 = eLam (PHL $ PVar tInt :++ PVar tBool :++ HRN) (\(a:+_:+_) -> a)
+-- case_pairfn :: Assertion
+-- case_pairfn = e @=? renderExp k3
+--  where
+--   e  = "\\(x0:int,x1:bool) -> x0"
+--   k3 = eLam (PHL $ PVar tInt :++ PVar tBool :++ HRN) (\(a:+_:+_) -> a)
 
 ------------------------------------------------------------------------}}}
 -- Macro expansion test cases                                           {{{