mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 13:32:19 +00:00
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
warning: methods `f` and `g` are never used
|
|
--> $DIR/issue-6128.rs:6:8
|
|
|
|
|
LL | trait Graph<Node, Edge> {
|
|
| ----- methods in this trait
|
|
LL | fn f(&self, _: Edge);
|
|
| ^
|
|
LL | fn g(&self, _: Node);
|
|
| ^
|
|
|
|
|
= note: `#[warn(dead_code)]` on by default
|
|
|
|
warning: 1 warning emitted
|
|
|