blob: a5b484c985fff8790ac2f7ef87993d941ccc364b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// aux-build:issue-17476.rs
// ignore-cross-compile
extern crate issue_17476;
pub struct Foo;
// @has issue_17476/struct.Foo.html \
// '//*[@href="http://example.com/issue_17476/trait.Foo.html#method.foo"]' \
// 'foo'
impl issue_17476::Foo for Foo {}
|