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

Native operations with unsigned int #668

Open
arakov opened this issue Jul 5, 2024 · 0 comments
Open

Native operations with unsigned int #668

arakov opened this issue Jul 5, 2024 · 0 comments

Comments

@arakov
Copy link
Member

arakov commented Jul 5, 2024

Describe the bug
The following code must use native operations

To Reproduce

import extensions;

public program()
{
   uint n := 0;
   while (n < 1000000000u)
     n++;

   console.writeLine(n);  
}

Expected behavior
The generated code must use only native numeric operations similar to the operation with int type

@arakov arakov added this to the ELENA 7.x milestone Jul 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant