about summary refs log tree commit diff
path: root/tests/ui/methods/method-recursive-blanket-impl.rs
diff options
context:
space:
mode:
authorThe Miri Conjob Bot <miri@cron.bot>2024-02-08 05:13:25 +0000
committerThe Miri Conjob Bot <miri@cron.bot>2024-02-08 05:13:25 +0000
commitc232e94bc17913abfcda050bb5616237c1aad11c (patch)
tree692bddaa3b63eb6c2ed17aa959fc215733fd063e /tests/ui/methods/method-recursive-blanket-impl.rs
parentcab1cc48ec25f1b2531a271abd2a6c04087dcc61 (diff)
parentd7263d7aada418eb22d0560388379a2e3658e211 (diff)
Merge from rustc
Diffstat (limited to 'tests/ui/methods/method-recursive-blanket-impl.rs')
-rw-r--r--tests/ui/methods/method-recursive-blanket-impl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/methods/method-recursive-blanket-impl.rs b/tests/ui/methods/method-recursive-blanket-impl.rs
index a2db75b4e85..e7e83cbec77 100644
--- a/tests/ui/methods/method-recursive-blanket-impl.rs
+++ b/tests/ui/methods/method-recursive-blanket-impl.rs
@@ -11,7 +11,7 @@
 use std::marker::Sized;
 
 // Note: this must be generic for the problem to show up
-trait Foo<A> {
+trait Foo<A> { //~ WARN trait `Foo` is never used
     fn foo(&self, a: A);
 }