purescript-0.15.15: 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")