-- test the representation of literals and also explicit type annotationsmoduleTH_repE1whereimportLanguage.Haskell.THSyntaxintExpr::ExprintExpr=[|42::Int|]integerExpr::ExprintegerExpr=[|42::Integer|]charExpr::ExprcharExpr=[|'x'|]stringExpr::ExprstringExpr=[|"A String"|]floatExpr::ExprfloatExpr=[|1.2::Float|]doubleExpr::ExprdoubleExpr=[|1.2::Double|]