summaryrefslogtreecommitdiffstats
path: root/test/CXX/lex/lex.literal/lex.ext/p1.cpp
blob: 717228b31e28129682092ca42b66aee536de84bc (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only -std=c++0x -verify %s

int * operator "" p31(long double); // expected-warning{{user-defined literal with suffix 'p31' is preempted by C99 hexfloat extension}}
long double operator "" _p31(long double);
long double operator "" pi(long double); // expected-warning{{user-defined literals not starting with '_' are reserved by the implementation}}

float hexfloat = 0x1p31; // allow hexfloats