//! This test case demonstrates correct use of the `#[codec(crate = path)]` attribute.
usejam_codec::{selfas codec, Encode, MaxEncodedLen};#[derive(Encode, MaxEncodedLen)]#[codec(crate = codec)]structExample;fnmain(){let_=Example::max_encoded_len();}