We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following program encounters codegen errors and crashes the IDE.
I don't know if the issue is more pervasive than just with float params, but this is what I could isolate.
using System; namespace test_variadic; class Program { public static void valid(int i, ...) { } public static void compiler_error(int i, float f, ...) { } public static void compiler_error(float f, ...) { } public static int Main(String[] args) { valid(1, 1.0f, "", ""); // codegen error and crash ide //compiler_error(1, 1.0f, "", ""); //compiler_error(1.0f, "", ""); return 0; } }
The text was updated successfully, but these errors were encountered:
Fixed at 9c79d8a
Sorry, something went wrong.
No branches or pull requests
The following program encounters codegen errors and crashes the IDE.
I don't know if the issue is more pervasive than just with float params, but this is what I could isolate.
The text was updated successfully, but these errors were encountered: