File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,9 @@ use syntax_pos::symbol::keywords::SelfUpper;
27
27
/// feels inconsistent.
28
28
///
29
29
/// **Known problems:**
30
- /// - Does not trigger within locally defined macros (#2098)
31
30
/// - False positive when using associated types (#2843)
32
31
/// - False positives in some situations when using generics (#3410)
33
32
/// - False positive when type from outer function can't be used (#3463)
34
- /// - Does not trigger in lifetimed structs
35
33
///
36
34
/// **Example:**
37
35
/// ```rust
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ mod lifetimes {
67
67
Foo { foo_str : "foo" }
68
68
}
69
69
70
- // TODO : the lint does not handle lifetimed struct
70
+ // FIXME : the lint does not handle lifetimed struct
71
71
// `Self` should be applicable here
72
72
fn clone ( & self ) -> Foo < ' a > {
73
73
Foo { foo_str : self . foo_str }
You can’t perform that action at this time.
0 commit comments