Switching the tests to use size_t instead of unsigned int to hopefully appease the Linux x64 build bot (take 2, forgot this test case).

llvm-svn: 182907
This commit is contained in:
Aaron Ballman 2013-05-30 02:17:14 +00:00
parent 12354641fe
commit 194a79e152
1 changed files with 3 additions and 1 deletions

View File

@ -1,8 +1,10 @@
// RUN: %clang_cc1 -fms-compatibility -fsyntax-only -verify %s
// expected-no-diagnostics
#include <stddef.h>
struct arbitrary_t {} arbitrary;
void *operator new(unsigned int size, arbitrary_t);
void *operator new(size_t size, arbitrary_t);
void f() {
// Expect no error in MSVC compatibility mode