summaryrefslogtreecommitdiff
path: root/lib/compiler/test/receive_SUITE_data/ref_opt/yes_1.erl
blob: e2ebe234c1b7462e100ff43d2a6239e95bf464b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-module(yes_1).
-compile(export_all).

?MODULE() ->
    ok.

f() ->
    Ref = make_ref(),
    receive
	{Ref,Reply} ->
	    Reply
    end.