diff options
author | Sebastian Méric de Bellefon <arnaudpourseb@gmail.com> | 2016-05-28 17:28:15 -0400 |
---|---|---|
committer | Sebastian Méric de Bellefon <arnaudpourseb@gmail.com> | 2016-05-28 17:28:15 -0400 |
commit | ef0993f8905b88339202339789c0a6432e28da77 (patch) | |
tree | ca5eee062ba5a0907dd9a8533be7261be12cbfca /html-test/src | |
parent | b0b23711fadb0ef2a7b0ade55286097bfa76e9ca (diff) | |
parent | f6e5d57bee5a7bf5d74d26982db64fa8a56f17bd (diff) |
Merge pull request #504 from Helkafen/issue-280
Fix #280. Parsing of module header
Diffstat (limited to 'html-test/src')
-rw-r--r-- | html-test/src/Bug280.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/html-test/src/Bug280.hs b/html-test/src/Bug280.hs new file mode 100644 index 00000000..ac27e2e5 --- /dev/null +++ b/html-test/src/Bug280.hs @@ -0,0 +1,11 @@ +{-| +Copyright: Foo, + Bar, + Baz + +The module description +-} +-- The module header can start with newlines. They are not taken into account for the indentation level +module Bug280 where + +x = "" |