From 76ea6b7ee6e62e70f795a766c34566f7c14d1b91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20G=C3=A9lineau?= Date: Thu, 21 Feb 2019 19:32:49 -0500 Subject: [PATCH] add the extensions required by the benchmark our package.yaml doesn't include the same extensions as freer-simple's, so we can't built it as-is. --- bench/countDown.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/bench/countDown.hs b/bench/countDown.hs index 563483b..756eaac 100644 --- a/bench/countDown.hs +++ b/bench/countDown.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE DataKinds, DeriveFunctor, FlexibleContexts, GADTs, TypeOperators #-} module Main (main) where import Control.Monad (replicateM_)