We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deed147 commit 5526c42Copy full SHA for 5526c42
test/test.sh
@@ -15,6 +15,7 @@ ticketsBroken=(
15
"T0167.hs"
16
"T0178.hs"
17
"T0189.y"
18
+ "T0190.hs"
19
)
20
21
# Colours used to display test outputs.
test/tickets/T0190.hs
@@ -0,0 +1,8 @@
1
+-- SYNTAX TEST "source.haskell" "Type variables in foreign import/export"
2
+
3
+ foreign import ccall unsafe "memcmp"
4
+ memcmp :: Ptr a -> Ptr ( b :: ty ) -> CSize -> IO CInt
5
+-- ^ ^ ^^ - entity.name.function.haskell
6
+-- ^ ^ ^^ variable.other.generic-type.haskell
7
+-- ^^ ^^ ^^ keyword.operator.arrow.haskell
8
+-- ^^^ ^^^ ^^^^^ ^^ ^^^^ storage.type.haskell
0 commit comments