| // RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions %s |
| // RUN: %clang_cc1 -fsyntax-only -verify -fms-compatibility %s |
| // RUN: %clang_cc1 -fsyntax-only -verify -triple i386-pc-win32 -fms-compatibility %s |
| __int64 y = 0x42i64u; // expected-error {{invalid suffix}} |
| __int64 z = 9Li64; // expected-error {{invalid suffix}} |
| __int64 q = 10lli64; // expected-error {{invalid suffix}} |
| __complex double c1 = 1i; |
| __complex double c2 = 1.0i; |
| __complex float c3 = 1.0if; |
| #define ULLONG_MAX 0xffffffffffffffffui64 |
| #define UINT 0xffffffffui32 |
| #define USHORT 0xffffui16 |
| unsigned long long m = ULLONG_MAX; |
| unsigned short s = USHORT; |
| /*expected-warning {{backslash and newline separated by space}} */ 0\ |