Skip to content

Instantly share code, notes, and snippets.

@cemerick

cemerick/foo.ml Secret

Created March 22, 2019 13:42
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 cemerick/97abe4cf4cdb9d61a72c0bd9615c8ca2 to your computer and use it in GitHub Desktop.
Save cemerick/97abe4cf4cdb9d61a72c0bd9615c8ca2 to your computer and use it in GitHub Desktop.
module Foo = struct
type t = int * int
module Bar = struct
type t = t
end
end
module Foo = struct
type t = int * int
type kk = t
module Bar = struct
type t = kk
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment