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
Explicit cast of variable to empty interface is required, but I believe it shouldn't be required, an implicit cast should be allowed.
Rationale: all types implement an empty interface, they do not need to be made implement an empty interface.
module main struct Null {} interface Values {} fn main() { mut a := []Values{len: 10, init: Null{}} for i := 0; i < a.len; i++ { a[i] = 69 } }
v run array-of-interfaces.v array-of-interfaces.v:8:35: error: expected `Values`, not `Null` 6 | 7 | fn main() { 8 | mut a := []Values{len: 10, init: Null{}} | ~~~~~~ 9 | for i := 0; i < a.len; i++ { 10 | a[i] = 69
No error is thrown
module main struct Null {} interface Values {} fn main() { mut a := []Values{len: 10, init: Values(Null{})} // bruh. for i := 0; i < a.len; i++ { a[i] = 69 } }
No response
V 0.4.10 a298fb8
|V full version |V 0.4.10 537605a.a298fb8 |:-------------------|:------------------- |OS |linux, "openmamba release 2024.6 for x86_64 (rolling)" |Processor |8 cpus, 64bit, little endian, Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz |Memory |7.83GB/31.16GB | | |V executable |/home/einar/.local/lib64/v/v |V last modified time|2025-04-02 08:51:46 | | |V home dir |OK, value: /home/einar/.local/lib64/v |VMODULES |OK, value: /home/einar/.vmodules |VTMP |OK, value: /tmp/v_1000 |Current working dir |OK, value: /home/einar/Documents/projects/vlang/active/firebird | | |Git version |git version 2.49.0 |V git status |weekly.2025.13-45-ga298fb8a |.git/config present |true | | |cc version |cc (GCC) 14.2.1 20240909 |gcc version |gcc (GCC) 14.2.1 20240909 |clang version |N/A |tcc version |tcc version 0.9.28rc 2024-07-31 HEAD@1cee0908 (x86_64 Linux) |tcc git status |thirdparty-linux-amd64 0134e9b9 |emcc version |N/A |glibc version |ldd (GNU libc) 2.41
Note
You can use the 👍 reaction to increase the issue's priority for developers.
Please note that only the 👍 reaction to the issue itself counts as a vote. Other reactions and those to comments will not be taken into account.
The text was updated successfully, but these errors were encountered:
Connected to Huly®: V_0.6-22507
Sorry, something went wrong.
init
index
You have a point since a[i] = 69 is accepted instead of explicit cast a[i] = Values(69).
a[i] = 69
a[i] = Values(69)
That used to be a problem last year and it was fixed, I am guessing this also needs to be taken care of
No branches or pull requests
Describe the bug
Explicit cast of variable to empty interface is required, but I believe it shouldn't be required, an implicit cast should be allowed.
Rationale: all types implement an empty interface, they do not need to be made implement an empty interface.
Reproduction Steps
Expected Behavior
No error is thrown
Current Behavior
Possible Solution
No response
Additional Information/Context
No response
V version
V 0.4.10 a298fb8
Environment details (OS name and version, etc.)
Note
You can use the 👍 reaction to increase the issue's priority for developers.
Please note that only the 👍 reaction to the issue itself counts as a vote.
Other reactions and those to comments will not be taken into account.
The text was updated successfully, but these errors were encountered: