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.
1 parent 7fbd4ee commit aa8f47bCopy full SHA for aa8f47b
tests/haskell-indentation-tests.el
@@ -301,14 +301,20 @@ fun = do { putStrLn \"X\";
301
(2 9 11)
302
(3 0))
303
304
-(hindent-test "13* Don't indent after deriving""
+(hindent-test "13a* Deriving on new line""
305
+data X = X | Y
306
+deriving (Eq, Ord, Show)"
307
+ (1 0)
308
+ (2 0 2))
309
+
310
+(hindent-test "13b* Don't indent after deriving""
311
data X = X
312
deriving (Eq, Ord, Show)"
313
(1 0)
314
(2 0 2)
315
316
-(hindent-test "13b honour = on a separate line in data declaration" "
317
+(hindent-test "13c honour = on a separate line in data declaration" "
318
data X a b
319
= X"
320
0 commit comments