blob: 5b3f826119779856e9ea9b8cc3c97c8147414377 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions %s
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +00002
3__int8 x1 = 3i8;
4__int16 x2 = 4i16;
5__int32 x3 = 5i32;
6__int64 x5 = 0x42i64;
7__int64 x4 = 70000000i128;
8
9__int64 y = 0x42i64u; // expected-error {{invalid suffix}}
10__int64 w = 0x43ui64; // expected-error {{invalid suffix}}
11__int64 z = 9Li64; // expected-error {{invalid suffix}}
12__int64 q = 10lli64; // expected-error {{invalid suffix}}