summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/ghci042.script
blob: 548f18c4b5648e32dcb08ae09b80c96df408df78 (plain)
1
2
3
4
5
6
7
8
9
10
--Testing record fields
data T = A {a :: Int}
:i A
:i a
let a = 3 :: Integer
:i a
a
data R = B {a :: Int}
:i a
:i T