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
Direct invocations on grouped expressions involving unboxed Integers can fail:
shared void run() { value a = ("hello ".plus) { "world"; }; // works value b = (("hello ".plus)) { "world"; }; // works value c = 1.plus { 2; }; // works value d = (1.plus) { 2; }; // error: error: long cannot be dereferenced value e = ((1.plus)) { 2; }; // error: error: long cannot be dereferenced value f = (Singleton)(10); // works }
See also ceylon/ceylon-spec#1449
The text was updated successfully, but these errors were encountered:
Closing (superseded by ceylon/ceylon-spec#1467)
Sorry, something went wrong.
No branches or pull requests
Direct invocations on grouped expressions involving unboxed Integers can fail:
See also ceylon/ceylon-spec#1449
The text was updated successfully, but these errors were encountered: