Move test from llvm/test/FrontendCXX and update.

llvm-svn: 137682
This commit is contained in:
Eric Christopher 2011-08-15 23:24:31 +00:00
parent 5443a6497b
commit d4737be322
1 changed files with 5 additions and 0 deletions

View File

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