summaryrefslogtreecommitdiff
path: root/lib/dialyzer/test/options3_SUITE_data/src/bad_specs.erl
blob: 530e1281c6401579391d7a306d95f89bcc2a7d12 (plain)
1
2
3
4
5
6
7
8
-module(bad_specs).
-export([f/1]).

%% There will be a warning unless specs are ignored.
-spec f(integer()) -> integer().
f(F) when is_float(F) ->
    F + 1.