#
# Grammar recognizes noun phrases optionally modified by noun phrases in the genitive.
#

NPP : NAP NAP_GEN*;
NAP[agreement] : ADJ* N ADJ*;
NAP_GEN[case = "2"] : NAP;
N[pos = N];
ADJ[pos = A];
