blob: ad4e50a551ce99faefc86a3da4b2e59587a3e366 [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}}
Sean Hunt8c723402010-01-10 23:37:56 +00005