It looks like some characters in quotes aren't escaped correctly.
I haven't extensively tested this, but here is one example I've found:
module Main where
example :: String
example = "\""
This compiles to:
let
module = { };
example = """;
in
{inherit example;}
But example should probably be "\"".
It looks like some characters in quotes aren't escaped correctly.
I haven't extensively tested this, but here is one example I've found:
This compiles to:
But
exampleshould probably be"\"".