1
2module Deprecation
3{-# Deprecated ["This is a module \"deprecation\"",
4             "multi-line",
5             "with unicode: Frère" ] #-}
6   ( foo )
7 where
8
9{-# DEPRECATEd   foo
10         ["This is a multi-line",
11          "deprecation message",
12          "for foo"] #-}
13foo :: Int
14foo = 4
15
16{-# DEPRECATED withBool        "The C2HS module will soon stop providing unnecessary\nutility functions. Please use standard FFI library functions instead." #-}
17