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
Describe the bug Compilation blocked because of "circular macro" 循环引用宏导致编译阻塞
Additional context
-module(t). -define(AA, {flag, ?AA}). %% 宏循环引用, circular macro -include_lib("kernel/include/file.hrl"). %% 只要是include其它文件(空内容也可以),触发 epp:enter_file2/5 即可 -export([ t/0 ]). t() -> ?AA.
erlc t.erl ^C %% block,use ctrl + c
epp.erl
The text was updated successfully, but these errors were encountered:
bjorng
No branches or pull requests
Describe the bug
Compilation blocked because of "circular macro"
循环引用宏导致编译阻塞
Additional context
epp.erl


The text was updated successfully, but these errors were encountered: