25ab719cfa
1 2 3 4 5 6 7 8 9 10 11 12
-module(request1). -export([a/0]). -dialyzer(unmatched_returns). a() -> b(), 1. b() -> {a, b}.