We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a45a500 + 73685d6 commit 82e07abCopy full SHA for 82e07ab
liquidhaskell-boot/src/Language/Haskell/Liquid/UX/CmdLine.hs
@@ -842,9 +842,9 @@ resDocs k (F.Crash xs s) =
842
orHeader = text "LIQUID: ERROR:" <+> text s
843
, orMessages = map (cErrToSpanned k . errToFCrash) xs
844
}
845
-resDocs k (F.Unsafe _ xs) =
+resDocs k (F.Unsafe stats xs) =
846
OutputResult {
847
- orHeader = text "LIQUID: UNSAFE"
+ orHeader = text $ "LIQUID: UNSAFE (" <> show (Solver.numChck stats) <> " constraints checked)"
848
, orMessages = map (cErrToSpanned k) (nub xs)
849
850
0 commit comments