aboutsummaryrefslogtreecommitdiff
path: root/tests/html-tests/tests/PruneWithWarning.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/html-tests/tests/PruneWithWarning.hs')
-rw-r--r--tests/html-tests/tests/PruneWithWarning.hs15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/html-tests/tests/PruneWithWarning.hs b/tests/html-tests/tests/PruneWithWarning.hs
deleted file mode 100644
index bfa55ea2..00000000
--- a/tests/html-tests/tests/PruneWithWarning.hs
+++ /dev/null
@@ -1,15 +0,0 @@
-{-# OPTIONS_HADDOCK prune #-}
--- |
--- What is tested here:
---
--- * If a binding has a deprecation message but no documentation, it is pruned
--- when @OPTIONS_HADDOCK prune@ is used.
---
-module PruneWithWarning (foo, bar) where
-
-foo :: Int
-foo = 23
-{-# DEPRECATED foo "use bar instead" #-}
-
-bar :: Int
-bar = 42