1
Fork 0
rust/src/test/rustdoc/generic-impl.rs

17 lines
519 B
Rust
Raw Normal View History

2018-07-21 13:19:17 +02:00
#![crate_name = "foo"]
use std::fmt;
// @!has foo/struct.Bar.html '//*[@id="impl-ToString"]//h3[@class="code-header in-band"]' 'impl<T> ToString for T'
2018-07-21 13:19:17 +02:00
pub struct Bar;
// @has foo/struct.Foo.html '//*[@id="impl-ToString"]//h3[@class="code-header in-band"]' 'impl<T> ToString for T'
2018-07-21 13:19:17 +02:00
pub struct Foo;
2018-07-29 16:47:31 +02:00
// @has foo/struct.Foo.html '//div[@class="sidebar-links"]/a[@href="#impl-ToString"]' 'ToString'
2018-07-21 13:19:17 +02:00
impl fmt::Display for Foo {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Foo")
}
}