diff options
| author | William Throwe <wtt6@cornell.edu> | 2015-07-20 01:23:46 -0400 |
|---|---|---|
| committer | William Throwe <wtt6@cornell.edu> | 2015-07-20 20:09:36 -0400 |
| commit | a3e78f4151ee23ad3175402e81247302619c1df7 (patch) | |
| tree | 7e7955a1466f187686182be651d43f6b683a034b | |
| parent | bbeace61198ff7f41c01356beb9cfdfd2bb8a87d (diff) | |
| download | rust-a3e78f4151ee23ad3175402e81247302619c1df7.tar.gz rust-a3e78f4151ee23ad3175402e81247302619c1df7.zip | |
Add test of cross-crate impl formatting
| -rw-r--r-- | src/test/auxiliary/rustdoc-impl-parts-crosscrate.rs | 15 | ||||
| -rw-r--r-- | src/test/rustdoc/impl-parts-crosscrate.rs | 30 |
2 files changed, 45 insertions, 0 deletions
diff --git a/src/test/auxiliary/rustdoc-impl-parts-crosscrate.rs b/src/test/auxiliary/rustdoc-impl-parts-crosscrate.rs new file mode 100644 index 00000000000..6e8f80c8f5f --- /dev/null +++ b/src/test/auxiliary/rustdoc-impl-parts-crosscrate.rs @@ -0,0 +1,15 @@ +// Copyright 2015 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. + +#![feature(optin_builtin_traits)] + +pub trait AnOibit {} + +impl AnOibit for .. {} diff --git a/src/test/rustdoc/impl-parts-crosscrate.rs b/src/test/rustdoc/impl-parts-crosscrate.rs new file mode 100644 index 00000000000..5fa2e03e0a8 --- /dev/null +++ b/src/test/rustdoc/impl-parts-crosscrate.rs @@ -0,0 +1,30 @@ +// Copyright 2015 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. + +// aux-build:rustdoc-impl-parts-crosscrate.rs +// ignore-cross-compile + +#![feature(optin_builtin_traits)] + +extern crate rustdoc_impl_parts_crosscrate; + +pub struct Bar<T> { t: T } + +// The output file is html embeded in javascript, so the html tags +// aren't stripped by the processing script and we can't check for the +// full impl string. Instead, just make sure something from each part +// is mentioned. + +// @has implementors/rustdoc_impl_parts_crosscrate/trait.AnOibit.js Bar +// @has - Send +// @has - !AnOibit +// @has - Copy +impl<T: Send> !rustdoc_impl_parts_crosscrate::AnOibit for Bar<T> + where T: Copy {} |
