Files
c3c/test/test_suite/struct/inline_slice_access_2088.c3t
2025-07-03 23:32:02 +02:00

20 lines
158 B
Plaintext

// #target: macos-x64
module test;
struct Foo
{
inline String str;
}
fn int main()
{
(Foo){}.len;
return 0;
}
/* #expect: test.ll
entry:
ret i32 0
}