2015-07-20 01:23:46 -04:00
|
|
|
// 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 }
|
|
|
|
|
2018-02-16 15:56:50 +01:00
|
|
|
// The output file is html embedded in javascript, so the html tags
|
2015-07-20 01:23:46 -04:00
|
|
|
// 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 {}
|