purescript-0.12.0: tests/purs/passing/NestedTypeSynonyms.purs
module Main where import Prelude import Effect.Console (log) type X = String type Y = X -> X fn :: Y fn a = a main = log (fn "Done")
module Main where import Prelude import Effect.Console (log) type X = String type Y = X -> X fn :: Y fn a = a main = log (fn "Done")