83cfc8c841
1 2 3 4 5 6 7 8 9 10 11 12
-module(yes_12). -compile(export_all). ?MODULE() -> ok. f() -> {_,Ref} = spawn_monitor(fun() -> ok end), receive {'DOWN',Ref,_,_,Reason} -> Reason end.