elm/tests/good/Soundness.elm
2013-07-13 13:44:40 +02:00

9 lines
127 B
Elm

trickyID x = let y = x in y
quad f = twice (twice f)
twice f x = f (f x)
n = quad (quad trickyID) 4
c = twice trickyID 'a'