summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml
diff options
context:
space:
mode:
authorJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2013-11-11 03:51:27 +0000
committerJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2013-11-11 03:51:27 +0000
commit00fa4010df1c981bc5cabe0f82aa8dab79978a2d (patch)
tree61ddfa53dd3ddc60feb8069ce65ba7d7f823d672 /testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml
parent956e258a125353ced2481445ee6bea486686d987 (diff)
downloadocaml-00fa4010df1c981bc5cabe0f82aa8dab79978a2d.tar.gz
forgot test...
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/module-alias@14280 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml')
-rw-r--r--testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml b/testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml
index 6f1ed791af..7027896518 100644
--- a/testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml
+++ b/testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml
@@ -4,6 +4,7 @@ open Std;;
module Hash1 : module type of Hash = Hash;;
module Hash2 : sig include (module type of Hash) end = Hash;;
let f1 (x : (_,_) Hash1.t) = (x : (_,_) Hashtbl.t);;
+let f2 (x : (_,_) Hash2.t) = (x : (_,_) Hashtbl.t);;
(* original report required Core_kernel:
module type S = sig