mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +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
|
|
|