File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -47,14 +47,19 @@ pub fn some_more_function<T: fmt::Debug>(t: &T) -> String {
47
47
48
48
/// Woohoo! A trait!
49
49
pub trait AnotherOne {
50
+ /// Some func 3.
51
+ fn func3 ( ) ;
52
+
50
53
/// Some func 1.
51
54
fn func1 ( ) ;
52
55
56
+ fn another ( ) ;
57
+ fn why_not ( ) ;
58
+
53
59
/// Some func 2.
54
60
fn func2 ( ) ;
55
61
56
- /// Some func 3.
57
- fn func3 ( ) ;
62
+ fn hello ( ) ;
58
63
}
59
64
60
65
/// Check for "i" signs in lists!
Original file line number Diff line number Diff line change
1
+ goto: file://|DOC_PATH|/trait.AnotherOne.html
2
+ assert: (".sidebar-links a:nth-of-type(1)", "another")
3
+ assert: (".sidebar-links a:nth-of-type(2)", "func1")
4
+ assert: (".sidebar-links a:nth-of-type(3)", "func2")
5
+ assert: (".sidebar-links a:nth-of-type(4)", "func3")
6
+ assert: (".sidebar-links a:nth-of-type(5)", "hello")
7
+ assert: (".sidebar-links a:nth-of-type(6)", "why_not")
You can’t perform that action at this time.
0 commit comments