Skip to content
Snippets Groups Projects
Commit 21d9d573 authored by sof's avatar sof
Browse files

[project @ 1999-01-15 14:06:53 by sof]

Parser didn't like "instance Foo X where {}". Does now.
parent ffb05ba3
No related merge requests found
......@@ -916,6 +916,7 @@ maybe_where:
| WHERE vocurly decls vccurly { $$ = $3; }
/* A where containing no decls is OK */
| WHERE { $$ = mknullbind(); }
| WHERE ocurly ccurly { $$ = mknullbind(); }
| /* empty */ { $$ = mknullbind(); }
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment