[runtime] Disable some tests in full-aot mode which cannot be AOTed because of type...
[mono.git] / mcs / class / monodoc / Monodoc.Ecma / EcmaUrlParser.jay
index 0717914a8a304cdaec667e397fb2e184ea53475d..0dafab3970189cd241ad3ea9b9c183cb7bb2cb99 100644 (file)
@@ -135,7 +135,7 @@ opt_inner_type_description
 
 opt_generic_type_suffix
         : /* empty */ { $$ = null; }
-        | OP_GENERICS_BACKTICK DIGIT { $$ = Enumerable.Repeat<string> (null, (int)$2).ToList (); }
+        | OP_GENERICS_BACKTICK DIGIT { $$ = Enumerable.Repeat<EcmaDesc> (null, (int)$2).ToList (); }
         | OP_GENERICS_LT generic_type_arg_list OP_GENERICS_GT { $$ = $2; }
 
 generic_type_arg_list