summaryrefslogtreecommitdiff
path: root/testsuite/tests/deSugar/should_compile/ds017.hs
blob: e6fd6d02f9e407ce02e1e553d820c5622281f384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-- !!! ds017 -- let expressions
--
module ShouldCompile where

f x y z
  = let
	a = x : []
	b = x : a
	c = y (let d = (z, z) in d)
	result = (c, b)
    in
	result