blob: ce742d906e68fa5fc79662a00ae924a9e3cb042e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE TemplateHaskell #-}
-- Test error message when the code in a splice
-- fails in a lazy fashion (e.g. a (head [])
-- thunk is embedded in the returned structure).
module TH where
$( do { ds <- [d| |]
; return (tail ds) }
)
|