[no description]
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -83,6 +83,9 @@ pub trait Pick<const N: usize>: Tupl { fn depict(self) -> (Self::L, Self::At, Self::R); } /// Main tuple trait. +#[diagnostic::on_unimplemented( + label = "this is not a tuple, or it is too big a tuple (>26 elements)" +)] pub trait Tupl: core::marker::Tuple { /// Refer to listmonster. type Head; |