rust/src/test/codegen/stack-alloc-string-slice.cc

13 lines
166 B
C++
Raw Normal View History

#include <stddef.h>
struct slice {
char const *p;
size_t len;
};
extern "C"
void test() {
struct slice s = { .p = "hello",
.len = 5 };
}