diff options
Diffstat (limited to 'testsuite/tests/programs/jtod_circint/Main.hs')
-rw-r--r-- | testsuite/tests/programs/jtod_circint/Main.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/tests/programs/jtod_circint/Main.hs b/testsuite/tests/programs/jtod_circint/Main.hs new file mode 100644 index 0000000000..a1907dc6a9 --- /dev/null +++ b/testsuite/tests/programs/jtod_circint/Main.hs @@ -0,0 +1,12 @@ +module Main where +import Signal +import Bit + +main = putStr test + +test = stest + +type B = Stream Bit + +stest = take 80 (shows z "\n") + where z = one :: B |