test(indent): rust - add test for indented comment

This commit is contained in:
Munif Tanjim 2022-01-21 19:57:24 +06:00 committed by Christian Clason
parent c2e3938510
commit fb7b6a266e
2 changed files with 7 additions and 0 deletions

View file

@ -5,3 +5,9 @@
fn foo(x: i32, y: i32) -> i32 {
x + y
}
impl A {
/// Do some stuff!! (put cursor here and press enter)
fn a();
}