1 2 3 4 5 6 7 8 9 10 11 12
-module(zero_tuple). -export([t1/0, t2/0]). t1() -> {} = a(), ok. t2() -> b = a(), ok. a() -> a.