rust/tests/target/issue_4936.rs

11 lines
158 B
Rust

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