aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/indent_SUITE_data/src/record_creation_diffs.erl
blob: e813459f8e38ace9015d2b9b93755f7255a95c97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
-module(record_creation_diffs).

-export([foo/1]).

-record(bar, {
          some_atom :: atom(),
          some_list :: list()
         }).

foo(Input) ->
    #bar{some_atom = Input, some_list = {this,is,a,tuple}}.