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
Code: https://play.vlang.io/p/409c8741ac
#include <stdarg.h> @[typedef] struct C.va_list {} fn C.va_start(voidptr, voidptr) fn C.va_end(voidptr) fn C.vfprintf(&C.FILE, &char, C.va_list) int fn t2(fmt voidptr, ...) { ap := C.va_list{} C.va_start(ap, fmt) C.vfprintf(C.stderr, fmt, ap) C.va_end(ap) } fn main() { a := 1 b := 2.5 t2(c'%s : %d : %.2f, %d, %c\n', c'foo', a, b, 42, `v`) }
vv
foo: 1: 2.5, 42, v
Output:
code.v:20:48: error: expression cannot be passed as `voidptr` 18 | a := 1 19 | b := 2.5 20 | t2(c'%s : %d : %.2f, %d, %c\n', c'foo', a, b, 42, `v`) | ~~ 21 | } Exited with error status 1
No response
V 0.4.8 43e27d2
V full version: V 0.4.8 43e27d2 OS: linux, Debian GNU/Linux 12 (bookworm) (VM) Processor: 2 cpus, 64bit, little endian, Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz getwd: /home/admin/playground vexe: /home/admin/v/v vexe mtime: 2024-12-10 12:25:26 vroot: OK, value: /home/admin/v VMODULES: OK, value: .vmodules VTMP: OK, value: /tmp/v_0 Git version: git version 2.39.5 Git vroot status: Error: fatal: detected dubious ownership in repository at '/home/admin/v' To add an exception for this directory, call: git config --global --add safe.directory /home/admin/v .git/config present: true CC version: cc (Debian 12.2.0-14) 12.2.0 emcc version: N/A thirdparty/tcc status: Error: fatal: detected dubious ownership in repository at '/home/admin/v/thirdparty/tcc' To add an exception for this directory, call: git config --global --add safe.directory /home/admin/v/thirdparty/tcc Error: fatal: detected dubious ownership in repository at '/home/admin/v/thirdparty/tcc' To add an exception for this directory, call: git config --global --add safe.directory /home/admin/v/thirdparty/tcc
Huly®: V_0.6-21560
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:
No branches or pull requests
Describe the bug
Code: https://play.vlang.io/p/409c8741ac
Reproduction Steps
vv
Expected Behavior
foo: 1: 2.5, 42, v
Current Behavior
Output:
Possible Solution
No response
Additional Information/Context
No response
V version
V 0.4.8 43e27d2
Environment details (OS name and version, etc.)
Huly®: V_0.6-21560
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: