about summary refs log tree commit diff
path: root/src/test/rustdoc
diff options
context:
space:
mode:
authorQuietMisdreavus <grey@quietmisdreavus.net>2018-08-02 15:42:02 -0500
committerQuietMisdreavus <grey@quietmisdreavus.net>2018-08-02 15:42:02 -0500
commitd6a7a3cab0b93b680802876ab490ce25b6b861f4 (patch)
tree4d79394a1597c6a4467a75e03d2d4eacdf8e12d5 /src/test/rustdoc
parent8df498be1c08bb4a5c6317ef0a5802c362ba26ac (diff)
downloadrust-d6a7a3cab0b93b680802876ab490ce25b6b861f4.tar.gz
rust-d6a7a3cab0b93b680802876ab490ce25b6b861f4.zip
add rustdoc test for `everybody_loops` fix
Diffstat (limited to 'src/test/rustdoc')
-rw-r--r--src/test/rustdoc/traits-in-bodies.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/rustdoc/traits-in-bodies.rs b/src/test/rustdoc/traits-in-bodies.rs
new file mode 100644
index 00000000000..3acf4af5fd2
--- /dev/null
+++ b/src/test/rustdoc/traits-in-bodies.rs
@@ -0,0 +1,29 @@
+// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+//prior to fixing `everybody_loops` to preserve items, rustdoc would crash on this file, as it
+//didn't see that `SomeStruct` implemented `Clone`
+
+//FIXME(misdreavus): whenever rustdoc shows traits impl'd inside bodies, make sure this test
+//reflects that
+
+pub struct Bounded<T: Clone>(T);
+
+pub struct SomeStruct;
+
+fn asdf() -> Bounded<SomeStruct> {
+    impl Clone for SomeStruct {
+        fn clone(&self) -> SomeStruct {
+            SomeStruct
+        }
+    }
+
+    Bounded(SomeStruct)
+}