Skip to content

Commit eed209d

Browse files
committed
Fix one more warning
1 parent 858c1d6 commit eed209d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reason-parser/reason_declarative_lexer.mll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ rule token state = parse
386386
let word = String.sub s 1 (String.length s - 1) in
387387
match Hashtbl.find keyword_table word with
388388
| exception Not_found -> NAMETAG word
389-
| kw ->
389+
| _ ->
390390
raise_error (Location.curr lexbuf) (Keyword_as_tag word);
391391
LIDENT "thisIsABugReportThis"
392392
}

0 commit comments

Comments
 (0)