diff options
Diffstat (limited to 'testsuite/tests/codeGen/should_compile/T15155l.hs')
-rw-r--r-- | testsuite/tests/codeGen/should_compile/T15155l.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testsuite/tests/codeGen/should_compile/T15155l.hs b/testsuite/tests/codeGen/should_compile/T15155l.hs index 643610bc06..6f39648630 100644 --- a/testsuite/tests/codeGen/should_compile/T15155l.hs +++ b/testsuite/tests/codeGen/should_compile/T15155l.hs @@ -1,8 +1,11 @@ module T15155 (a, B(..), b) where +import Debug.Trace + newtype A = A Int newtype B = B A {-# NOINLINE a #-} -a = A 42 +a = trace "evaluating a" A 42 + b = B a |