summaryrefslogtreecommitdiff
path: root/graph_macro/tests/works.rs
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2023-01-13 14:25:40 +0800
committerJSDurand <mmemmew@gmail.com>2023-01-13 14:25:40 +0800
commit3c6511f69c7639abff60ac9999a08ce2daa24a7d (patch)
treeb39aa27a4c5454a4b0203faccd57e4136dbbe663 /graph_macro/tests/works.rs
parent1a3d346f413325ed37848a6b2526e8e729269833 (diff)
macro: try to write a macro for inhereting graphs
An attempt to write a derive macro to automatically derive the various graph traits.
Diffstat (limited to 'graph_macro/tests/works.rs')
-rw-r--r--graph_macro/tests/works.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/graph_macro/tests/works.rs b/graph_macro/tests/works.rs
new file mode 100644
index 0000000..fe8a853
--- /dev/null
+++ b/graph_macro/tests/works.rs
@@ -0,0 +1,13 @@
+#![allow(dead_code)]
+
+use graph_macro::Testing;
+
+#[derive(Debug, Testing)]
+struct Haha {
+ size: usize,
+}
+
+#[test]
+fn it_works() {
+ println!("it works: {:?}", Haha { size: 0 });
+}