about summary refs log tree commit diff
path: root/src/test/codegen/stack-alloc-string-slice.cc
blob: 01eae9b16bb6faf9c1cc84d8362726bcb5949cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stddef.h>

struct slice {
  char const *p;
  size_t len;
};

extern "C"
void test() {
  struct slice s = { .p = "hello",
                     .len = 5 };
}