summaryrefslogtreecommitdiffstats
path: root/test/Lexer/hexfloat.cpp
blob: ad4e50a551ce99faefc86a3da4b2e59587a3e366 (plain)
1
2
3
4
5
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a C99 feature}}
double e = 0x.p0; //expected-error{{hexadecimal floating constants require a significand}}