{-# OPTIONS -cpp #-}
module Test where

#include "interlude.h"
import Interlude

-- fails = let foo' = head [] in foo'  -- CPP doesn't work with single apostrophes

works = let foo = head [] in foo

works2 = let foo' =
		     head []
         in foo'
