DEBSOURCES
Skip Quicknav
sources / polyml / 5.7.1-5 / Tests / Fail / Test005.ML
123456789
(* Checks on free type variables arising from expansive expressions. *) functor F() = struct fun f i = i val z = f f end; structure S = F(); S.z 1;