mirror of
https://github.com/intel/llvm.git
synced 2026-01-27 14:50:42 +08:00
8 lines
114 B
C
8 lines
114 B
C
// RUN: clang-cc -emit-llvm < %s | grep puts
|
|
|
|
int a(int x)
|
|
{
|
|
int (*y)[x];
|
|
return sizeof(*(puts("asdf"),y));
|
|
}
|