Skip to content
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

Call format! through an unambiguous path #226

Merged
merged 1 commit into from Jun 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/format.rs
Expand Up @@ -129,7 +129,10 @@ macro_rules! format_ident {
macro_rules! format_ident_impl {
// Final state
([$span:expr, $($fmt:tt)*]) => {
$crate::__private::mk_ident(&format!($($fmt)*), $span)
$crate::__private::mk_ident(
&$crate::__private::format!($($fmt)*),
$span,
)
};

// Span argument
Expand Down
1 change: 1 addition & 0 deletions src/runtime.rs
Expand Up @@ -4,6 +4,7 @@ use std::iter;
use std::ops::BitOr;

pub use proc_macro2::*;
pub use std::format;

pub struct HasIterator; // True
pub struct ThereIsNoIteratorInRepetition; // False
Expand Down