mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 22:32:19 +03:00
4a61146ba0
[ log ] prettier log for pats & clauses [ re #650 ] Even lazier [ fix #705 ] normalise primitives in mkPat [ refactor ] introduce getPrimitiveNames
11 lines
224 B
Idris
11 lines
224 B
Idris
-- %logging compile.casetree 5
|
|
-- %logging eval.casetree 5
|
|
|
|
-- %logging declare.def.lhs 5
|
|
|
|
bad : (a : Type) -> (x : a) -> String
|
|
bad String "good" = "good"
|
|
bad (List Nat) [1,2] = "good"
|
|
bad Char 'c' = "good"
|
|
bad _ _ = "bad"
|