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