On Fri Jan 30, 2026 at 1:11 AM KST, Charalampos Mitrodimas wrote: > Jesung Yang via B4 Relay <[email protected]> writes: >> +/// ```compile_fail >> +/// # use kernel::macros::Into; >> +/// // `repr(C)` enums are not allowed. >> +/// #[derive(Into)] >> +/// struct Foo(u8); > > Should this be something like this? Also on the TryFrom (patch 2/4). > > /// // `repr(C)` enums are not allowed. > /// #[derive(Into)] > /// #[repr(C)] > /// enum Foo { > /// A, > /// B, > /// }
Nice catch, I'll buffer the fix until I get some more feedback. Thanks for taking a look! Best regards, Jesung
