summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/driver/dynamic_flags_001/A.hs
blob: 50c518be7e3974bec9d0ea83d15c37ead9ba72dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

{-# OPTIONS_GHC -fwarn-unused-binds #-}

module A (a, a_type_default, a_missing_sig) where

a :: Int
a = 4

a_type_default :: Int
a_type_default = 2 ^ 2

a_missing_sig = ()