mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fix regression for parsing types and switch to the "new" generic syntax that's being tested.
This commit is contained in:
@@ -243,11 +243,11 @@ fn String Url.to_string(&self, Allocator allocator = allocator::heap()) @dynamic
|
||||
};
|
||||
}
|
||||
|
||||
def UrlQueryValueList = List(<String>);
|
||||
def UrlQueryValueList = List<[String]>;
|
||||
|
||||
struct UrlQueryValues
|
||||
{
|
||||
inline HashMap(<String, UrlQueryValueList>) map;
|
||||
inline HashMap<[String, UrlQueryValueList]> map;
|
||||
UrlQueryValueList key_order;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user