diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-10-02 14:07:53 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-10-02 14:07:53 +0200 |
commit | ef72e54cf6bcee7124058364fea15b4d1bd62cd7 (patch) | |
tree | 90981bbae6b4be2cc075c65c792a560c44b3b05b /test/Tests/C.hs | |
parent | 22a3d9c5cbafb7a633f2f802af884d042718e78d (diff) |
Compatibility with GHC 9.6
Diffstat (limited to 'test/Tests/C.hs')
-rw-r--r-- | test/Tests/C.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Tests/C.hs b/test/Tests/C.hs index 9567393..11c2ef1 100644 --- a/test/Tests/C.hs +++ b/test/Tests/C.hs @@ -1,9 +1,12 @@ +{-# LANGUAGE CPP #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE ImportQualifiedPost #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE ScopedTypeVariables #-} +#if MIN_VERSION_GLASGOW_HASKELL(9,8,0,0) {-# LANGUAGE TypeAbstractions #-} +#endif {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeOperators #-} -- {-# OPTIONS_GHC -fplugin GHC.TypeLits.Normalise #-} |