Skip to content

Commit

Permalink
Add tracking issue for proc_macro_is_available
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Apr 22, 2020
1 parent 7435547 commit 3bd742f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libproc_macro/lib.rs
Expand Up @@ -58,7 +58,7 @@ use std::{error, fmt, iter, mem};
/// non-panicking way to detect whether the infrastructure required to use the
/// API of proc_macro is presently available. Returns true if invoked from
/// inside of a procedural macro, false if invoked from any other binary.
#[unstable(feature = "proc_macro_is_available", issue = "none")] // FIXME
#[unstable(feature = "proc_macro_is_available", issue = "71436")]
pub fn is_available() -> bool {
bridge::Bridge::is_available()
}
Expand Down

0 comments on commit 3bd742f

Please sign in to comment.