plugins-1.3: testsuite/pdynload/poly1/api/API.hs
module API where
data Interface = Interface {
function :: (Num a) => a -> a -> a
}
plugin :: Interface
plugin = Interface { function = error "no function defined" }
module API where
data Interface = Interface {
function :: (Num a) => a -> a -> a
}
plugin :: Interface
plugin = Interface { function = error "no function defined" }