blob: 176ef0a4f996feec0c3ea7fd4911fe04973b87ea (
plain) (
blame)
1
2
3
4
5
6
7
|
use proc_macro::TokenStream;
/// Marker attribute for the Mingling lint system.
/// All it does is pass the item through unchanged.
pub(crate) fn mlint(_attr: TokenStream, item: TokenStream) -> TokenStream {
item
}
|