blob: 8a684defc111ae46194d9c8002675d5be952d8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
(***********************************************************************)
(* *)
(* OCaml *)
(* *)
(* Gabriel Scherer, projet Gallium, INRIA Rocquencourt *)
(* *)
(* Copyright 2012 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0. *)
(* *)
(***********************************************************************)
(* a polymorphic variant of test3.ml; found a real bug once *)
let test =
let rec x = `A f
and f = function
| 0 -> 2
| n -> match x with `A g -> g 0
in
assert (f 1 = 2)
|