diff options
author | Sasha Bogicevic <sasa.bogicevic@pm.me> | 2022-07-14 12:02:28 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-08-19 18:29:57 -0400 |
commit | ab3e0f5a02f6a1b63407e08bb97a228a76c27abd (patch) | |
tree | 1b7d64f6a2acd5137b02f47317cb0afe65b8ac63 /testsuite | |
parent | 51ffd00906d1c75dc72c71ba4216b480996c8ce2 (diff) | |
download | haskell-ab3e0f5a02f6a1b63407e08bb97a228a76c27abd.tar.gz |
19217 Implicitly quantify type variables in :kind command
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/ghci/should_run/T19217.script | 1 | ||||
-rw-r--r-- | testsuite/tests/ghci/should_run/T19217.stdout | 1 | ||||
-rw-r--r-- | testsuite/tests/ghci/should_run/all.T | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/should_run/T19217.script b/testsuite/tests/ghci/should_run/T19217.script new file mode 100644 index 0000000000..b06fed35df --- /dev/null +++ b/testsuite/tests/ghci/should_run/T19217.script @@ -0,0 +1 @@ +:kind [a] diff --git a/testsuite/tests/ghci/should_run/T19217.stdout b/testsuite/tests/ghci/should_run/T19217.stdout new file mode 100644 index 0000000000..f8de790c75 --- /dev/null +++ b/testsuite/tests/ghci/should_run/T19217.stdout @@ -0,0 +1 @@ +[a] :: * diff --git a/testsuite/tests/ghci/should_run/all.T b/testsuite/tests/ghci/should_run/all.T index 5433a613db..935cbecd7d 100644 --- a/testsuite/tests/ghci/should_run/all.T +++ b/testsuite/tests/ghci/should_run/all.T @@ -77,6 +77,7 @@ test('T18064', ['T18064.script']) test('T18594', just_ghci, ghci_script, ['T18594.script']) test('T18562', just_ghci, ghci_script, ['T18562.script']) +test('T19217', just_ghci, ghci_script, ['T19217.script']) test('T19460', just_ghci, ghci_script, ['T19460.script']) test('T19733', just_ghci, compile_and_run, ['']) |