We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported by Joern Barthel.
When compiling parameterized modules an exception is thrown.
Example:
-module(foo, [ Bar ]). -compile([export_all]). -include_lib("eunit/include/eunit.hrl").
foo() -> Bar.
foo_test() -> ?assertMatch("foo!", (foo:new("foo!")):foo().
Exception:
./foo.erl:none: error in parse transform 'eunit_autoexport': {{badarg,{foo,['Bar ']}}, [{packages,concat_1,1}, {eunit_autoexport,rewrite,2}, {eunit_autoexport,rewrite,2}, {compile, '-foldl_transform/2-anonymous-2- ', 2}, {compile,foldl_transform,2}, {compile, '-internal_comp/4-anonymous-1-', 2}, {compile,fold_comp,3}, {compile,internal_comp,4}]} error
Environment: R11B-5 win32
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reported by Joern Barthel.
When compiling parameterized modules an exception is thrown.
Example:
-module(foo, [ Bar ]).
-compile([export_all]).
-include_lib("eunit/include/eunit.hrl").
foo() ->
Bar.
foo_test() ->
?assertMatch("foo!", (foo:new("foo!")):foo().
Exception:
./foo.erl:none: error in parse transform 'eunit_autoexport': {{badarg,{foo,['Bar
']}},
[{packages,concat_1,1},
{eunit_autoexport,rewrite,2},
{eunit_autoexport,rewrite,2},
{compile, '-foldl_transform/2-anonymous-2- ', 2},
{compile,foldl_transform,2},
{compile, '-internal_comp/4-anonymous-1-', 2},
{compile,fold_comp,3},
{compile,internal_comp,4}]}
error
Environment:
R11B-5 win32
The text was updated successfully, but these errors were encountered: