stylish-haskell icon indicating copy to clipboard operation
stylish-haskell copied to clipboard

Bad UnicodeSyntax

Open id-ekaagr opened this issue 1 year ago • 1 comments

Example :

{-# language UnicodeSyntax #-}

module Main where

import Prelude qualified as A

data Detail
 = Detail
 { id             :: String
 , name           :: String
 }
 deriving (Show)

In any record :: is never converted to where UnicodeSyntax is enabled.

id-ekaagr avatar Nov 13 '22 21:11 id-ekaagr