mirror of
https://github.com/valitydev/parse_trans.git
synced 2024-11-06 08:35:17 +00:00
bd33333246
git-svn-id: http://svn.ulf.wiger.net/parse_trans/trunk/parse_trans@6 ae7daa23-5771-0410-ae54-ec81a0701e84
15 lines
260 B
Erlang
15 lines
260 B
Erlang
-module(ct_expand_test).
|
|
|
|
-export([f/0]).
|
|
|
|
-compile({parse_transform, ct_expand}).
|
|
-pt_pp_src(true).
|
|
|
|
f() ->
|
|
ct_expand:term(
|
|
[{a, 1},
|
|
{b, ct_expand:term(
|
|
[{ba, 1},
|
|
{bb, ct_expand:term(2)}])}]).
|
|
|