diff options
author | Richard Eisenberg <eir@cis.upenn.edu> | 2014-11-04 11:34:53 -0500 |
---|---|---|
committer | Richard Eisenberg <eir@cis.upenn.edu> | 2014-11-21 11:15:47 -0500 |
commit | 2346de44330a4309b840e26ddd1ded23f92c6f81 (patch) | |
tree | a0d7ada84611107c984398221f0977e88b811565 /testsuite/tests/th | |
parent | d627c5cf81fcce05ec160edc5be907297ff05c33 (diff) | |
download | haskell-2346de44330a4309b840e26ddd1ded23f92c6f81.tar.gz |
Fix #1476 by making splice patterns work.
Unfortunately, splice patterns in brackets still do not work
because we don't run splices in brackets. Without running a pattern
splice, we can't know what variables it binds, so we're stuck.
This is still a substantial improvement, and it may be the best
we can do. Still must document new behavior.
Diffstat (limited to 'testsuite/tests/th')
-rw-r--r-- | testsuite/tests/th/all.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/th/all.T b/testsuite/tests/th/all.T index 3f8ff16c81..366858ea9e 100644 --- a/testsuite/tests/th/all.T +++ b/testsuite/tests/th/all.T @@ -344,5 +344,5 @@ test('T8100', normal, compile, ['-v0']) test('T9064', normal, compile, ['-v0']) test('T9209', normal, compile_fail, ['-v0']) test('T7484', normal, compile_fail, ['-v0']) -test('T1476', expect_broken(1476), compile, ['-v0']) +test('T1476', normal, compile, ['-v0']) test('T1476b', normal, compile_fail, ['-v0']) |