Skip to content
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

Failure during codegen on variadic function with float parameter #2183

Closed
farism opened this issue Mar 10, 2025 · 1 comment
Closed

Failure during codegen on variadic function with float parameter #2183

farism opened this issue Mar 10, 2025 · 1 comment

Comments

@farism
Copy link
Contributor

farism commented Mar 10, 2025

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;
	}
}

Image

@bfiete
Copy link
Collaborator

bfiete commented Mar 11, 2025

Fixed at 9c79d8a

@bfiete bfiete closed this as completed Mar 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants