aboutsummaryrefslogtreecommitdiff
path: root/test/Lexer/hexfloat.cpp
blob: 493b64e627402bee7ad2b3cdd89e2d88e51f3f78 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
// XFAIL: *

#ifndef __GXX_EXPERIMENTAL_CXX0X__
float f = 0x1p+1; // expected-warning {{incompatible with C++0x}}
#else
float f = 0x1p+1; // expected-warning {{invalid suffix}}
#endif