diff options
Diffstat (limited to 'tests/rustdoc/issue-21801.rs')
-rw-r--r-- | tests/rustdoc/issue-21801.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/rustdoc/issue-21801.rs b/tests/rustdoc/issue-21801.rs new file mode 100644 index 000000000..29d2ec64c --- /dev/null +++ b/tests/rustdoc/issue-21801.rs @@ -0,0 +1,9 @@ +// aux-build:issue-21801.rs +// ignore-cross-compile + +extern crate issue_21801; + +// @has issue_21801/struct.Foo.html +// @has - '//*[@id="method.new"]' \ +// 'fn new<F>(f: F) -> Foowhere F: FnMut() -> i32' +pub use issue_21801::Foo; |