forked from OSchip/llvm-project
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:
parent
12354641fe
commit
194a79e152
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue