Files
c3c/test/test_suite/attributes/format_h.c3t
2025-07-08 11:43:49 +02:00

14 lines
129 B
Plaintext

module test;
import std;
struct Foo
{
int x, y;
}
fn int main()
{
Foo f = { 33, 12323 };
io::printfn("%h", &f);
return 0;
}