about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/extra-source-files/Foo.hs
blob: b3f0c04492dbac41b464f551479769729f918c6a (plain) (blame)
1
2
3
4
5
6
7
8
{-# LANGUAGE TemplateHaskell #-}

module Foo (foo) where

import FooTH (embedFile)

foo :: String
foo = $(embedFile "tests/extra-source-files/file.txt") ++ "!"