rust/tests/target/issue-3198.rs

20 lines
509 B
Rust
Raw Normal View History

2019-02-24 00:18:46 -06:00
impl TestTrait {
fn foo_one(/* Important comment1 */ self) {}
fn foo(/* Important comment1 */ self, /* Important comment2 */ a: i32) {}
fn bar(/* Important comment1 */ &mut self, /* Important comment2 */ a: i32) {}
fn baz(/* Important comment1 */ self: X<'a, 'b>, /* Important comment2 */ a: i32) {}
fn baz_tree(
/* Important comment1 */
self: X<'a, 'b>,
/* Important comment2 */
a: i32,
/* Important comment3 */
b: i32,
) {
}
}