summary refs log tree commit diff stats
path: root/tests/98-readme.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/98-readme.rs')
-rw-r--r--tests/98-readme.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/98-readme.rs b/tests/98-readme.rs
new file mode 100644
index 0000000..bad1f34
--- /dev/null
+++ b/tests/98-readme.rs
@@ -0,0 +1,20 @@
+use impl_trait::impl_trait;
+
+struct Foo;
+
+trait Bar {}
+
+impl_trait! {
+  /// Yes, you can write docs here.
+  impl Foo {
+    /// You can write docs here too.
+    fn as_dyn_bar(&self) -> &dyn Bar {
+      self
+    }
+    /// You can even write docs here!
+    impl trait Bar {
+    }
+  }
+}
+
+fn main() {}