summaryrefslogtreecommitdiff
path: root/testsuite/tests/determinism/determ002/A.hs
blob: 9a88f2c319fee6122b04916553c41a57ae95eea9 (plain)
1
2
3
4
5
6
7
8
9
10
module A where

-- This is a repro for the issue where to fingerprint a record, field labels
-- were pulled from FastStringEnv in the order of Uniques which are known
-- to have arbitrary order - see Note [Unique Determinism] in Unique.

data B = C
  { e :: ()
  , d :: ()
  }