Skip to content

Commit

Permalink
Merge pull request #238 from dtolnay/pubuse
Browse files Browse the repository at this point in the history
Split wildcard re-export in runtime module into private and public
  • Loading branch information
dtolnay authored Mar 12, 2023
2 parents 5c776cb + 9866125 commit e8930ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ use crate::{IdentFragment, ToTokens, TokenStreamExt};
use core::fmt;
use core::iter;
use core::ops::BitOr;
use proc_macro2::{Group, Ident, Punct, Spacing, TokenTree};

pub use core::option::Option;
pub use proc_macro2::*;
pub use proc_macro2::{Delimiter, Span, TokenStream};
pub use std::format;

pub struct HasIterator; // True
Expand Down

0 comments on commit e8930ae

Please sign in to comment.