Move test from llvm/test/FrontendCXX and update.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137682 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2011-08-15 23:24:31 +00:00
Родитель 7d458b0768
Коммит f25a16233c
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,5 @@
// RUN: %clang_cc1 -fsyntax-only -verify -Wall %s
// rdar://5683899
void** f(void **Buckets, unsigned NumBuckets) {
return Buckets + NumBuckets;
}