diff --git a/tests/haskell-indentation-tests.el b/tests/haskell-indentation-tests.el index 5a644ac24..360138da0 100644 --- a/tests/haskell-indentation-tests.el +++ b/tests/haskell-indentation-tests.el @@ -524,5 +524,15 @@ func = 1234 -}" ((3 2) 0)) +(hindent-test "24* should parse inline type signatures properly" " +foo = do + _ :: String <- undefined + _ :: String <- undefined + return ()" + ((1 0) 0) + ((2 0) 2) + ((3 0) 2 17) + ((4 0) 2 17)) + ;;; haskell-indentation-tests.el ends here