Generics with 2 arguments not supported in union
description
The following snippet is not valid when invoking gppg because of the generic with 2 arguments. It supports generics with 1 argument like List<string> but when comma is encountered it throws an error. I believe it must be allowed to use all generics.
%union {
public string sVal;
public StringBuilder sbVal;
public KeyValuePair<string, string> kvp;
}