forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#85757 - GuillaumeGomez:rollup-k8hfhp8, r=Guil…
…laumeGomez Rollup of 3 pull requests Successful merges: - rust-lang#85722 (Fix trait methods' toggle) - rust-lang#85730 (Mention workaround for floats in Iterator::{min, max}) - rust-lang#85738 (Rename opensbd to openbsd) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
4 changed files
with
47 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
#![crate_name = "foo"] | ||
|
||
// @has foo/trait.Foo.html | ||
// @has - '//details[@class="rustdoc-toggle"]//code' 'bar' | ||
// @!has - '//details[@class="rustdoc-toggle"]//code' 'bar' | ||
// @has - '//code' 'bar' | ||
// @has - '//details[@class="rustdoc-toggle"]//code' 'foo' | ||
pub trait Foo { | ||
fn bar() -> (); | ||
/// hello | ||
fn foo(); | ||
} |