llvm-project/clang/test/CodeGen/init.c

8 lines
100 B
C
Raw Normal View History

// RUN: clang -emit-llvm %s
void f1()
{
// Scalars in braces.
int a = { 1 };
int b = { 1, 2 };
}