rust/tests/target/issue_4936.rs
2021-09-08 19:27:31 -05:00

11 lines
158 B
Rust

#[discard_params_doc]
trait Trait {
fn foo(
&self,
/// some docs
bar: String,
/// another docs
baz: i32,
);
}