summary refs log tree commit diff
path: root/tests/rustdoc/inline_cross/issue-76736-3.rs
blob: 1bed4621c049ea97c621a0a99a83f8f88be52741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ compile-flags: -Zforce-unstable-if-unmarked
//@ aux-build:issue-76736-1.rs
//@ aux-build:issue-76736-2.rs

#![crate_name = "foo"]

extern crate issue_76736_1;
extern crate issue_76736_2;

//@ has foo/struct.Foo.html
//@ has - '//*[@class="impl"]//h3[@class="code-header"]' 'MaybeResult'
pub struct Foo;

//@ has foo/struct.Bar.html
//@ has - '//*[@class="impl"]//h3[@class="code-header"]' 'MaybeResult'
pub use issue_76736_2::Bar;