]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-15318-2.rs
Rollup merge of #100509 - BoxyUwU:merge_hrtb_with_higher_rank_trait_bound, r=compiler...
[rust.git] / src / test / rustdoc / issue-15318-2.rs
1 // aux-build:issue-15318.rs
2 // ignore-cross-compile
3 #![no_std]
4
5 extern crate issue_15318;
6
7 pub use issue_15318::ptr;
8
9 // @has issue_15318_2/fn.bar.html \
10 //          '//*[@href="primitive.pointer.html"]' \
11 //          '*mut T'
12 pub fn bar<T>(ptr: *mut T) {}