diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2021-06-09 08:43:37 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2021-06-09 08:44:12 +0100 |
commit | ba49a965c187269c8b32a2c8a126bd3a76806119 (patch) | |
tree | 07c27822d92fd83a6db97d74b60269a122d89b11 | |
parent | 9e724f6e5bcb31abd270ea44fb01b1edb18f626f (diff) | |
download | haskell-wip/t19966.tar.gz |
Add (broken) test for #19966wip/t19966
-rw-r--r-- | testsuite/tests/rename/should_compile/T19966.hs | 7 | ||||
-rw-r--r-- | testsuite/tests/rename/should_compile/all.T | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/rename/should_compile/T19966.hs b/testsuite/tests/rename/should_compile/T19966.hs new file mode 100644 index 0000000000..884b14d46e --- /dev/null +++ b/testsuite/tests/rename/should_compile/T19966.hs @@ -0,0 +1,7 @@ +module T19966 where + +-- I is out of scope, so out-of-scope is a warning. +x = I + +-- IO is out of scope, so out-of-scope should be a warning, but fails. +y = IO diff --git a/testsuite/tests/rename/should_compile/all.T b/testsuite/tests/rename/should_compile/all.T index 56521084d7..5260145edd 100644 --- a/testsuite/tests/rename/should_compile/all.T +++ b/testsuite/tests/rename/should_compile/all.T @@ -175,3 +175,4 @@ test('T18497', [], makefile_test, ['T18497']) test('T18264', [], makefile_test, ['T18264']) test('T18302', expect_broken(18302), compile, ['']) test('T17853', [], multimod_compile, ['T17853', '-v0']) +test('T19966', expect_broken(19966), compile, ['-fdefer-out-of-scope-variables']) |