summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js/slice-array.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc-js/slice-array.rs')
-rw-r--r--tests/rustdoc-js/slice-array.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/rustdoc-js/slice-array.rs b/tests/rustdoc-js/slice-array.rs
new file mode 100644
index 000000000..2523b21cf
--- /dev/null
+++ b/tests/rustdoc-js/slice-array.rs
@@ -0,0 +1,16 @@
+pub struct P;
+pub struct Q;
+pub struct R<T>(T);
+
+// returns test
+pub fn alef() -> &'static [R<P>] { loop {} }
+pub fn bet() -> R<[Q; 32]> { loop {} }
+
+// in_args test
+pub fn alpha(_x: R<&'static [P]>) { loop {} }
+pub fn beta(_x: [R<Q>; 32]) { loop {} }
+
+pub trait TraitCat {}
+pub trait TraitDog {}
+
+pub fn gamma<T: TraitCat + TraitDog>(t: [T; 32]) {}