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
I've only seen this recently, so I think it may be an interaction with newer GHCs. Running the following on Windows and GHC 8.6.5 fails:
#!/usr/bin/env stack -- stack --resolver lts-13.28 script import System.IO.Silently main :: IO () main = silence $ pure ()
Error message:
Main.hs: NUL: openFile: does not exist (No such file or directory)
This does not occur with GHC 8.2.2. Still testing on 8.4.4.
By seeming complete happenstance, I merged a PR recently which instead uses \\.\NUL. I can test that out next and open a PR.
\\.\NUL
The text was updated successfully, but these errors were encountered:
Confirmed that it does not error on GHC 8.4.4.
Sorry, something went wrong.
Merge pull request #8 from snoyberg/master
56b43aa
Use different Windows NUL device for GHC 8.6.5 #7
Presumably fixed by:
No branches or pull requests
I've only seen this recently, so I think it may be an interaction with newer GHCs. Running the following on Windows and GHC 8.6.5 fails:
Error message:
This does not occur with GHC 8.2.2. Still testing on 8.4.4.
By seeming complete happenstance, I merged a PR recently which instead uses
\\.\NUL
. I can test that out next and open a PR.The text was updated successfully, but these errors were encountered: