//! Test: Sequence number exceeding 999 should fail compilation
//!
//! This test verifies that sequence! macro rejects values > 999
//! as per WDP spec (001-999 range).
pub mod sequences {
use waddling_errors_macros::sequence;
sequence! {
// This should fail - exceeds maximum of 999
OVERFLOW(1001) {
description: "This should not compile",
},
}
}
fn main() {}