#[ cfg( not( all( feature = "enabled", feature = "attr_prop" ) ) ) ]
fn main()
{
println!( "This example requires the 'enabled' and 'attr_prop' features to be enabled." );
println!( "Try running with: cargo run --example macro_tools_parse_attributes --all-features" );
}
#[ cfg( all( feature = "enabled", feature = "attr_prop" ) ) ]
fn main()
{
println!( "=== Parse Attributes with Properties Example ===" );
println!();
println!( "This is a demonstration of the attribute parsing concept." );
println!( "For a complete working example, see: " );
println!( " cargo run --example macro_tools_attr_prop --all-features" );
println!();
println!( "=== End of Examples ===" );
}