add disabled test for #[hdl] struct S4<W: KnownSize, W2: KnownSize> which type errors
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
Jacob Lifshay 2024-10-10 22:58:15 -07:00
parent 1a2149b040
commit d0694cbd52
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c

View file

@ -32,6 +32,13 @@ pub struct S2<T = ()> {
pub v: E<T>,
}
#[cfg(todo)]
#[hdl(outline_generated)]
pub struct S4<W: KnownSize, W2: KnownSize> {
pub v: UIntType<W>,
pub v2: SIntType<W2>,
}
// check that #[hdl] properly handles hygiene
macro_rules! types_in_macros {
($a:ident, $b:ident, $c:ident, $d:ident, $e:ident, $f:ident, $A:ident, $B:ident, $C:ident, $D:ident, $E:ident, $F:ident) => {