view tests/functorMadness.ur @ 2068:b6adfe99bb08

Check realloc's return code to prevent segfault on out of memory condition (Part 2)
author Sergey Mironov <grrwlf@gmail.com>
date Sun, 24 Aug 2014 11:56:41 +0400
parents 210fb3dfc483
children
line wrap: on
line source
functor F(M : sig end) = struct
    fun f () = f ()

    functor G(M : sig end) = struct
        fun g () = f ()
    end
end

structure M1 = F(struct end)
structure M2 = F(struct end)

structure N1 = M1.G(struct end)
structure N2 = M2.G(struct end)

fun main () : transaction page =
    return (N1.g ());
    return (N2.g ());
    return <xml/>