mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-29 16:54:42 +03:00
3acd7121c3
Ignore-this: ad4af1ae06455cd9a375d98cda4732ec darcs-hash:20090906024946-f0a0d-f53090841bda6a957a0dc163ac9ef277dd52d38c.gz
14 lines
275 B
Haskell
14 lines
275 B
Haskell
{-# LANGUAGE ScopedTypeVariables #-}
|
|
module Main where
|
|
|
|
import Verify
|
|
|
|
-- should be exported by Graphics.Vty.Picture
|
|
import Graphics.Vty.Picture ( Image, empty_image )
|
|
|
|
main = run_test $ do
|
|
-- should provide an image type.
|
|
let _ :: Image = empty_image
|
|
return ()
|
|
|