diff options
Diffstat (limited to 'graph_macro/tests')
-rw-r--r-- | graph_macro/tests/works.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/graph_macro/tests/works.rs b/graph_macro/tests/works.rs index a57e866..dc0f75a 100644 --- a/graph_macro/tests/works.rs +++ b/graph_macro/tests/works.rs @@ -11,13 +11,17 @@ pub(crate) struct Haha { #[derive(Debug)] /// Testing docs -#[allow(unused)] +#[repr(C)] #[derive(Default, Graph)] +#[allow(unused)] pub struct HahaU(pub(crate) graph::ALGraph); #[derive(Debug, Graph)] pub struct HahaG<T: graph::GraphLabel> { - graph: graph::DLGraph<T>, + #[graph(haha)] + #[allow(unused)] + #[inline] + pub(crate) graph: graph::DLGraph<T>, } impl<T: graph::GraphLabel> Default for HahaG<T> { |