diff options
| author | Michael Howell <michael@notriddle.com> | 2023-02-21 14:11:08 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2023-02-22 08:40:47 -0700 |
| commit | 3f374128ee3924514aacadf96479e17fee8f9903 (patch) | |
| tree | 2b0e58a547768a464864cec072eac77be620c1c4 /tests/ui/lint/lint-missing-doc.rs | |
| parent | 3d056c31257cc26760b7e65c5dfdae069f7ddc74 (diff) | |
| download | rust-3f374128ee3924514aacadf96479e17fee8f9903.tar.gz rust-3f374128ee3924514aacadf96479e17fee8f9903.zip | |
diagnostics: update test cases to refer to assoc fn with `self` as method
Diffstat (limited to 'tests/ui/lint/lint-missing-doc.rs')
| -rw-r--r-- | tests/ui/lint/lint-missing-doc.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/ui/lint/lint-missing-doc.rs b/tests/ui/lint/lint-missing-doc.rs index 2297257919e..4a234d2651a 100644 --- a/tests/ui/lint/lint-missing-doc.rs +++ b/tests/ui/lint/lint-missing-doc.rs @@ -50,8 +50,10 @@ trait B { } pub trait C { //~ ERROR: missing documentation for a trait - fn foo(&self); //~ ERROR: missing documentation for an associated function - fn foo_with_impl(&self) {} //~ ERROR: missing documentation for an associated function + fn foo(&self); //~ ERROR: missing documentation for a method + fn foo_with_impl(&self) {} //~ ERROR: missing documentation for a method + fn foo_no_self(); //~ ERROR: missing documentation for an associated function + fn foo_no_self_with_impl() {} //~ ERROR: missing documentation for an associated function } #[allow(missing_docs)] |
