aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_parser/src
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_parser/src')
-rw-r--r--crates/ra_parser/src/grammar/params.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_parser/src/grammar/params.rs b/crates/ra_parser/src/grammar/params.rs
index fce9dd218..c9c2da379 100644
--- a/crates/ra_parser/src/grammar/params.rs
+++ b/crates/ra_parser/src/grammar/params.rs
@@ -61,7 +61,7 @@ fn list_(p: &mut Parser, flavor: Flavor) {
61 } 61 }
62 // test param_list_vararg 62 // test param_list_vararg
63 // extern "C" { fn printf(format: *const i8, ...) -> i32; } 63 // extern "C" { fn printf(format: *const i8, ...) -> i32; }
64 // extern "C" { fn printf(#[attr] format: *const i8, ...) -> i32; } 64 // extern "C" { fn printf(format: *const i8, #[attr] ...) -> i32; }
65 if flavor.type_required() { 65 if flavor.type_required() {
66 p.eat(T![...]); 66 p.eat(T![...]);
67 } 67 }