Closed fernandolguevara closed 1 month ago
module boom; enum Boom: int (String a) { BOOM = {0} } module app; import std::io, boom; fn void! main(String[] args) { io::printn(boom::Boom.BOOM); }
output:
LLVM ERROR: Unsupported expression in static initializer: %28 [1] 41565 abort c3c run
This was caused due to the introspection being triggered in a local scope. It should be fixed now.
Thanks, It's working now!
output: