diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2012-03-02 20:06:35 +0000 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2012-03-02 20:06:35 +0000 |
commit | 3b9c6514a50e453e74f9fba6dea1b2a7a5dcfab0 (patch) | |
tree | a6165c8c8edcfc3274f8c536b07eeff87450393d /testsuite/tests/lib/Text.Printf/1548.hs | |
parent | 48ba35e032dc85f2f38d7d7c3c41cffdac1dce5d (diff) | |
parent | 05b18ad0a57528f4fcf0e9608a03a9b180060710 (diff) | |
download | haskell-3b9c6514a50e453e74f9fba6dea1b2a7a5dcfab0.tar.gz |
Merge branch 'master' of http://darcs.haskell.org//testsuite
Conflicts:
mk/boilerplate.mk
Diffstat (limited to 'testsuite/tests/lib/Text.Printf/1548.hs')
-rw-r--r-- | testsuite/tests/lib/Text.Printf/1548.hs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/lib/Text.Printf/1548.hs b/testsuite/tests/lib/Text.Printf/1548.hs deleted file mode 100644 index 68cec0548f..0000000000 --- a/testsuite/tests/lib/Text.Printf/1548.hs +++ /dev/null @@ -1,11 +0,0 @@ -import Text.Printf - -main = do - printf "%.*f\n" (2::Int) ((1/3) :: Double) - -- (expected: "0.33") - - printf "%.3s\n" "foobar" - -- (expected: "foo") - - printf "%10.5d\n" (4::Int) - -- (expected: " 00004") |