Delyan Angelov
Delyan Angelov
If you want just to check, that a module can compile, you can use: `v -shared /home/johndoe/.vmodules/despiegk/crystallib/installers/` - it will produce a shared library. `v -check -shared /home/johndoe/.vmodules/despiegk/crystallib/installers/` also works...

Please add the failing (and now fixed) code snippet as a regression test file in say: `vlib/v/fmt/tests/orm_module_prefix_keep.vv` (the `_keep.vv` suffix is important, it means that file is checked to be...
I think that casting ints to an enum should be allowed in unsafe {} blocks. The result of casting ints that are outside the allowed enum values is indeed undefined...
Whether an operation is common or not (in my personal opinion, it is not common in general, but very niche, but I digress), has no relevance on whether it is...
> I think casting to an enum from an int like in the example is something that is absolutely desirable. I agree, it is desirable. It would just need to...
I am re-opening this, because the merged PR implements only part of what is needed.
A minimal example for this problem is: ```v struct Abc { data voidptr } struct Xyz { x int } fn main() { a := Abc{ data: Xyz{} } println(a)...
the git history also tracks changes, but if people want to organize things better, go ahead
PRs are welcomed.