Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
d02cd1a7
Commit
d02cd1a7
authored
Jun 03, 2014
by
Simon Peyton Jones
Browse files
Add :kind test in T7730
parent
6e8861c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
testsuite/tests/ghci/scripts/T7730.script
0 → 100644
View file @
d02cd1a7
:set -XPolyKinds
data A x y
:i A
:kind A
:set -XExistentialQuantification
data T a = forall a . MkT a
:info T
testsuite/tests/ghci/scripts/T7730.stdout
0 → 100644
View file @
d02cd1a7
type role A phantom phantom
data A (x :: k) (y :: k1)
-- Defined at <interactive>:3:1
A :: k -> k1 -> *
type role T phantom
data T (a :: k) where
MkT :: forall (k :: BOX) (a :: k) a1. a1 -> T a
-- Defined at <interactive>:7:1
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment