forked from OSchip/llvm-project
7 lines
99 B
C
7 lines
99 B
C
![]() |
// RUN: clang -emit-llvm %s
|
||
|
void f1()
|
||
|
{
|
||
|
// Braces in a scalar
|
||
|
int a = { 1 };
|
||
|
int b = { 1, 2 };
|
||
|
}
|