Skip to content

Instantly share code, notes, and snippets.

@eldesh
Created February 26, 2014 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eldesh/9230604 to your computer and use it in GitHub Desktop.
Save eldesh/9230604 to your computer and use it in GitHub Desktop.
[ (name evaluation CP-600) Provide check fails (structure replication): Top.S ] is occured from SML#1.2.0
(* .smi *)
_require "basis.smi"
structure S =
struct
val id : 'a -> 'a
end
structure Top =
struct
structure S = S
end
(* .sml *)
structure S =
struct
fun id x = x
end
signature TOP =
sig
structure S : sig
val id : 'a -> 'a
end
end
structure Top :> TOP =
struct
structure S = S
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment