no need to keep around this output.
[oota-llvm.git] / test / C++Frontend / 2008-01-11-BadWarning.cpp
1 // RUN: %llvmgcc -xc++ %s -S -o /dev/null |& not grep warning
2 // rdar://5683899
3 void** f(void **Buckets, unsigned NumBuckets) {
4   return Buckets + NumBuckets;
5 }
6