mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-30 02:13:36 +03:00
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 ()
|
||
|
|