//! Test to isolate proc macro issue with lifetime-only structs
// Custom attribute macro that does nothing - just to test the issue
// use former::Former; // Unused - commented out
/// Test struct without derive to ensure compilation works.
/// Test struct with standard derives.
// This fails - our custom Former derive
// #[ derive( Former ) ]
// pub struct FailsWithFormerDerive<'a> {
// data: &'a str,
// }