Description
I've seen a number of crates now where when the nightly
feature is enabled the crate's compilation breaks due to procedural macros. This typically happens around resolution in macro expansion and has to do primarily with quote!
I believe.
If the nightly
feature is disabled then everything is unhygienic and I think works with the equivalent of Span::call_site()
, meaning that all the tokens produced by quote!
ended up morally being used with Span::call_site()
. When nightly
is enabled, however, the quote!
macro is actually under the hood using Span::def_site()
everywhere (it was basically just ignored without the nightly
feature).
tl;dr; tokens produced by quote!
use Span::call_site()
when nightly
is not enabled, and Span::def_site()
when nightly
is enabled
@dtolnay do you have thoughts on this? Do you think we should, while Span
is unstable, move the quote
crate to using Span::call_site()
by default?