2010-05-27 15:17:06 +00:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic
|
|
|
|
// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify
|
2010-01-15 15:39:40 +00:00
|
|
|
|
|
|
|
#ifndef __GXX_EXPERIMENTAL_CXX0X__
|
|
|
|
float f = 0x1p+1; // expected-warning {{incompatible with C++0x}}
|
|
|
|
#else
|
|
|
|
float f = 0x1p+1; // expected-warning {{invalid suffix}}
|
|
|
|
#endif
|