blob: fe917fecf3b7693bb35a143b36184da10f1dce4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
module TestLib (testMessage) where
import TestSubLib (messageEnd)
testMessage :: String
testMessage = "hello " ++ messageEnd
-- Force dynamic linking
{-# ANN testMessage () #-}
|