-
Notifications
You must be signed in to change notification settings - Fork 1.6k
add tests for using macros in as_conversions_lint
#4888
New issue
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
Conversation
How about external macros? All the macros tested here are local. Otherwise this seems like a good idea and we might as well merge as is and iterate later if you like. |
Can you point to a lint with external macro tests? I don't really know how to use external crates in tests. |
@Areredify Hey I had to add an external macro test for a new lint recently so maybe this could help you: #4881. Specifically files: |
@krishna-veerareddy oh, that's how you do it, thanks |
@Areredify Do you still want to add the external macro tests? Let me know if you need further help =) |
@Areredify friendly ping wrt. the external macro tests =) |
Hi @Areredify, I'm going ahead and close this PR as it hasn't been active in a while. Please don't hesitate to re-open it or ask for help when you want to pick it up again =) |
I want to add external macros |
Add exteranal macros for as_conversions Added external macros to this PR #4888. r? `@llogiq`
Add exteranal macros for as_conversions Added external macros to this PR #4888. r? `@llogiq`
Add exteranal macros for as_conversions Added external macros to this PR #4888. r? `@llogiq` changelog: none
As somebody noted in the original pr (unfortunately only after it was closed),
as_conversions
lint needs macro interaction tests. Also I am not sure whether or not we should lint in the local macro invocations (currently we are linting in them).