1 2 3 4 5 6 7 8 9
{-# LANGUAGE Safe #-} module SafeLang11_A ( A ) where data A = A1 | A2 instance Show A where show A1 = "A1 is secret!" show A2 = "A2 is secret!"