summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-misc/is_expansive.ml
blob: 9a4d66da5e891553149f2389eacac0e141c46470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(* TEST
 expect;
*)

match [] with x -> (fun x -> x);;
[%%expect{|
- : 'a -> 'a = <fun>
|}];;

match [] with x -> (fun x -> x) | _ -> .;;
[%%expect{|
- : 'a -> 'a = <fun>
|}];;