{-# OPTIONS_GHC -XEmptyDataDecls -XScopedTypeVariables #-} module NET.System.Func.Type where import NET data Func_ a instance (NET.Type a) => NET.Type (Func_ a) where tyName v = tyNameCtor "System.Func" v type Func a tyArg tyRes = GObject (Func_ a) (tyArg,tyRes)