-
-
Notifications
You must be signed in to change notification settings - Fork 662
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a compiled bug on c# platform about enumerator and generic #3224
Comments
What's the bug there? |
|
I really don't understand what you mean - What would |
Oh, okay - I got it: the problem is with http://msdn.microsoft.com/en-us/library/x854yt9s(v=vs.110).aspx . |
Code to reproduce without the HUGS dependency: class Main
{
public static function main()
{
var list = new cs.system.collections.generic.List_1();
list.Add('aa');
var enumerator = list.GetEnumerator();
}
} |
okay, it can work. |
fix this pl0x |
I use the part that extern
System.Collections
of “HUGS” library(https://github.com/proletariatgames/HUGS)e.g.
it compiled as
The text was updated successfully, but these errors were encountered: