Skip to content

Commit c78e349

Browse files
committed
shrink inline tes
1 parent c3ac2c9 commit c78e349

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

crates/ra_parser/src/grammar/expressions.rs

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -535,15 +535,9 @@ fn cast_expr(p: &mut Parser, lhs: CompletedMarker) -> CompletedMarker {
535535
m.complete(p, CAST_EXPR)
536536
}
537537

538-
// test arg_list
539-
// fn assert_float(s: &str, n: f64) {}
540-
// fn foo() {
541-
// assert_float(
542-
// "1.797693134862315708e+308L",
543-
// #[allow(clippy::excessive_precision)]
544-
// #[allow(dead_code)]
545-
// 1.797_693_134_862_315_730_8e+308,
546-
// );
538+
// test arg_with_attr
539+
// fn main() {
540+
// foo(#[attr] 92)
547541
// }
548542
fn arg_list(p: &mut Parser) {
549543
assert!(p.at(T!['(']));

0 commit comments

Comments
 (0)