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
Consider the following two functions
export function test(): string { let a: u64 = 1; return a.toString(); } export function test1(): string { let arr: u64[] = Array.create<u64>(1); arr[0] = 1; return arr[0].toString(); }
The first one compiles but the second one doesn't and the error is
ERROR TS2339: Property 'toString' does not exist on type 'u64'. return arr[0].toString(); ~~~~~~~~
Fiddle example here
The text was updated successfully, but these errors were encountered:
@dcodeIO is this related to #473?
Sorry, something went wrong.
Possibly. Either that, or it's missing to pick up the backing U64 class somewhere.
U64
Successfully merging a pull request may close this issue.
Consider the following two functions
The first one compiles but the second one doesn't and the error is
Fiddle example here
The text was updated successfully, but these errors were encountered: