about summary refs log tree commit diff
path: root/tests/ui/lint/lint-missing-doc.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-02-21 14:11:08 -0700
committerMichael Howell <michael@notriddle.com>2023-02-22 08:40:47 -0700
commit3f374128ee3924514aacadf96479e17fee8f9903 (patch)
tree2b0e58a547768a464864cec072eac77be620c1c4 /tests/ui/lint/lint-missing-doc.rs
parent3d056c31257cc26760b7e65c5dfdae069f7ddc74 (diff)
downloadrust-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.rs6
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)]