2015-04-07 00:56:35 +00:00
|
|
|
//@ aux-build:issue-17476.rs
|
2015-04-22 22:22:36 +00:00
|
|
|
//@ ignore-cross-compile
|
2023-09-28 00:22:18 +00:00
|
|
|
// https://github.com/rust-lang/rust/issues/17476
|
2015-04-07 00:56:35 +00:00
|
|
|
|
2023-09-27 23:51:21 +00:00
|
|
|
#![crate_name="issue_17476"]
|
|
|
|
|
2015-04-07 00:56:35 +00:00
|
|
|
extern crate issue_17476;
|
|
|
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has issue_17476/struct.Foo.html \
|
2015-04-07 18:50:14 +00:00
|
|
|
// '//*[@href="http://example.com/issue_17476/trait.Foo.html#method.foo"]' \
|
2015-04-07 00:56:35 +00:00
|
|
|
// 'foo'
|
|
|
|
impl issue_17476::Foo for Foo {}
|