tilia-0.0.1.0: corpora/vendored/other/comment-trailing-the-last-let-binding-out.hs
module Route.Final where
final :: Int -> Int
final n =
let first = n
second = first + 1 -- the one the caller actually gets
in second
module Route.Final where
final :: Int -> Int
final n =
let first = n
second = first + 1 -- the one the caller actually gets
in second