blob: 656693399fa1f06f34bd26bbbad96dff01c7d539 [file] [log] [blame]
Benjamin Kramer0b495cd2010-06-25 12:48:07 +00001// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
Douglas Gregor46717302011-10-12 18:51:02 +00002// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
3float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a C99 feature}}
Aaron Ballmanb534a9e2012-02-07 13:46:03 +00004double e = 0x.p0; //expected-error{{hexadecimal floating constants require a significand}}
Aaron Ballman66b0eba2012-02-08 13:36:33 +00005double d = 0x.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
6float g = 0x1.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
7double h = 0x1.p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}