aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/init.c
blob: 77a85fa75c4e3188e020632e063498a2020de9e6 (plain)
1
2
3
4
5
6
7
// RUN: clang -emit-llvm %s
void f1()
{
	// Braces in a scalar
	int a = { 1 };
	int b = { 1, 2 };
}