зеркало из https://github.com/microsoft/clang.git
add a testcase
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50608 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
3e56e0b8b2
Коммит
d3c3856c15
|
@ -1,4 +1,4 @@
|
|||
// RUN: clang -emit-llvm %s
|
||||
// RUN: clang -emit-llvm %s -o -
|
||||
void f1() {
|
||||
// Scalars in braces.
|
||||
int a = { 1 };
|
||||
|
@ -13,3 +13,11 @@ void f2() {
|
|||
int *e[3][3] = { {&a[1][1], &b[2][2]}, {&a[0][0], &b[1][1]} };
|
||||
char ext[3][3] = {".Y",".U",".V"};
|
||||
}
|
||||
|
||||
typedef void (* F)(void);
|
||||
extern void foo(void);
|
||||
struct S { F f; };
|
||||
void f3() {
|
||||
struct S a[1] = { { foo } };
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче