We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9b9621 commit dbe5ae8Copy full SHA for dbe5ae8
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 86735c0d7de911ca950839931324dd5b30dfea35
+refs/heads/master: ac276f7016625081def78c1c47ed896aa20054db
trunk/src/comp/syntax/parse/parser.rs
@@ -2147,6 +2147,9 @@ fn parse_fn_proto(p: parser) -> ast::proto {
2147
if p.peek() == token::POUND {
2148
p.bump();
2149
ast::proto_bare
2150
+ } else if p.peek() == token::AT {
2151
+ p.bump();
2152
+ ast::proto_fn
2153
} else {
2154
ast::proto_fn
2155
}
0 commit comments