--- /opt/cvs/dotgnu/pnet/cscc/csharp/cs_grammar.y Tue Nov 5 22:24:11 2002 +++ /tmp/dotgnu/pnet/cscc/csharp/cs_grammar.y Mon Nov 11 13:47:18 2002 @@ -2959,8 +2959,8 @@ ; FormalIndexParameter - : OptAttributes Type Identifier { - $$ = ILNode_FormalParameter_create($1, ILParamMod_empty, $2, $3); + : OptAttributes ParameterModifier Type Identifier { + $$ = ILNode_FormalParameter_create($1, $2, $3, $4); } | ARGLIST { $$ = ILNode_FormalParameter_create(0, ILParamMod_arglist, 0, 0);