aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_SUITE_data/src/atom_guard.erl
blob: 95581b339aa12470937b0e87ea57c0cc748495e1 (plain) (blame)
1
2
3
4
5
6
7
8
-module(atom_guard).
-export([test/0]).

test() ->
    foo(42).

foo(X) when is_atom(x) ->
    X.