You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tcc version 0.9.28rc 2026-01-10 HEAD@5ec0e6f8 (AArch64 Darwin)
tcc git status
thirdparty-macos-arm64 f995efa3
emcc version
N/A
glibc version
N/A
What did you do? ./v -g -o vdbg cmd/v && ./vdbg optional_enum_minify_bug.v && optional_enum_minify_bug
modulemainpubenumMyModeasu8 {
inherit
a
b
}
@[minify]
structCfg {
mode ?MyMode
ok bool
}
fnmain() {
cfg:= Cfg{}
println(cfg.ok)
}
What did you see?
================== C compilation error (from cc): ==============
cc: /tmp/v_501/optional_enum_minify_bug.01KHPGG5Q0TPDKGAXK335Q45VP.tmp.c:568:23: error: bit-field 'mode' has non-integral type '_option_main__MyMode' (aka 'struct _option_main__MyMode')
cc: 568 | _option_main__MyMode mode : 2;
cc: | ^ ~
cc: 1 error generated.
================================================================
Try passing `-g` when compiling, to see a .v file:line information, that correlates more with the C error.
(Alternatively, pass `-show-c-output`, to print the full C error message).
builder error:
==================
C error found. It should never happen, when compiling pure V code.
This is a V compiler bug, please report it using `v bug file.v`,
or goto https://github.com/vlang/v/issues/new/choose .
You can also use #help on Discord: https://discord.gg/vlang .
What did you expect to see?
C compiler error
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.
V version: V 0.5.0 de7fba1, press to see full `v doctor` output
What did you do?
./v -g -o vdbg cmd/v && ./vdbg optional_enum_minify_bug.v && optional_enum_minify_bugWhat did you see?
What did you expect to see?
C compiler error
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.