We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using doctest on GHC HEAD I discovered that named sections using single-line comment style are no longer parsed/found.
doctest
So the following works in GHC 710, but does not work in HEAD:
-- $setup -- >>> bla bla -- >>> har har
Named sections using multi-line comments are however parsed/found correctly. So the following works in GHC 710 and HEAD:
{- $setup >>> bla bla >>> har har -}
I have no idea if this is a GHC bug or not, but I figured someone here might know.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using
doctest
on GHC HEAD I discovered that named sections using single-line comment style are no longer parsed/found.So the following works in GHC 710, but does not work in HEAD:
Named sections using multi-line comments are however parsed/found correctly. So the following works in GHC 710 and HEAD:
I have no idea if this is a GHC bug or not, but I figured someone here might know.
The text was updated successfully, but these errors were encountered: