summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T10439.script
diff options
context:
space:
mode:
authorZejun Wu <watashi@watashi.ws>2015-07-03 19:31:25 +0200
committerBen Gamari <ben@smart-cactus.org>2015-07-03 22:33:19 +0200
commit1d6ead7d71ae9ad104f9bed9579462ce4a218594 (patch)
tree5a345c53f9e4156261325ca4989a612da95b6635 /testsuite/tests/ghci/scripts/T10439.script
parentb5e1944e2b069a7df3444e57bae0b4ee15bde73c (diff)
downloadhaskell-1d6ead7d71ae9ad104f9bed9579462ce4a218594.tar.gz
Enable using qualified field of constructor in GHCi
The -fimplicit-import-qualified made it possible to uses qualifed names in GHCi without explicitly import the modules. But it didn't work for field of constructor, this patch fixed this issue. Test Plan: cd testsuite/tests/rename/ && make cd testsuite/tests/ghci/ && make Reviewers: austin, simonpj Reviewed By: austin, simonpj Subscribers: bgamari, thomie Differential Revision: https://phabricator.haskell.org/D900 GHC Trac Issues: #10439
Diffstat (limited to 'testsuite/tests/ghci/scripts/T10439.script')
-rw-r--r--testsuite/tests/ghci/scripts/T10439.script6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/scripts/T10439.script b/testsuite/tests/ghci/scripts/T10439.script
new file mode 100644
index 0000000000..7f481abadd
--- /dev/null
+++ b/testsuite/tests/ghci/scripts/T10439.script
@@ -0,0 +1,6 @@
+let tree = Data.Tree.Node 0 []
+Data.Tree.rootLabel tree
+let f (Data.Tree.Node i j) k = Data.Tree.Node k j
+f tree 1
+let g i j = i { Data.Tree.rootLabel = j }
+g tree 2