mirror of
https://github.com/valitydev/parse_trans.git
synced 2024-11-06 08:35:17 +00:00
14 lines
160 B
Erlang
14 lines
160 B
Erlang
-module(test_exprecs).
|
|
|
|
-export([f/0]).
|
|
|
|
-compile({parse_transform, exprecs}).
|
|
|
|
-record(r, {a, b, c}).
|
|
|
|
-export_records([r]).
|
|
|
|
|
|
f() ->
|
|
{new, '#new-r'([])}.
|