summaryrefslogtreecommitdiff
path: root/utils/check-exact/cases/LayoutIn3.expected.hs
diff options
context:
space:
mode:
Diffstat (limited to 'utils/check-exact/cases/LayoutIn3.expected.hs')
-rw-r--r--utils/check-exact/cases/LayoutIn3.expected.hs13
1 files changed, 0 insertions, 13 deletions
diff --git a/utils/check-exact/cases/LayoutIn3.expected.hs b/utils/check-exact/cases/LayoutIn3.expected.hs
deleted file mode 100644
index 900d6daf63..0000000000
--- a/utils/check-exact/cases/LayoutIn3.expected.hs
+++ /dev/null
@@ -1,13 +0,0 @@
-module LayoutIn3 where
-
---Layout rule applies after 'where','let','do' and 'of'
-
---In this Example: rename 'x' after 'let' to 'anotherX'.
-
-foo x = let anotherX = 12 in (let y = 3
- z = 2 in anotherX * y * z * w) where y = 2
- --there is a comment.
- w = x
- where
- x = let y = 5 in y + 3
-