aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/options2_SUITE_data/src/unused_unknown_type.erl
blob: 90df7d528a3ce84a33b4aff9c690ad26c3c61373 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
-module(unused_unknown_type).

-export_type([unused/0]).

-type unused() :: unknown:type1().

-record(unused_rec, {a :: unknown:type2()}).

-record(rec, {a}).
-type unused_rec() :: #rec{a :: unknown:type3()}.