aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tools/test/cover_SUITE_data/otp_6115/f1.erl
blob: 5399b33f19646b63a51a964174ebaddec374cee7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
-module(f1).
-export([start_a/0, start_b/0]).

start_a() ->
    f2:start(fun() -> 
		     ok
	     end).

start_b() ->
    f2:start(fun fun1/0).

fun1() ->
    ok.