summaryrefslogtreecommitdiff
path: root/lib/dialyzer/test/small_SUITE_data/src/gh_6518.erl
blob: 794548b37af9076de994cb3249759ed86445ec9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-module(gh_6518).
-export([f/1]).

f(X) ->
    case
        fun() ->
                [ok || _ <- []]
        end
    of
        _ ->
            (Y = X)
    end andalso Y.