summaryrefslogtreecommitdiff
path: root/clang/test/CXX/lex/lex.literal/lex.ext/p1.cpp
blob: 1c227a1b10d385ab5a1019b55d5625cb9a728835 (about) (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s

void operator "" p31(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
void operator "" _p31(long double);
long double operator "" pi(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}

float hexfloat = 0x1p31; // allow hexfloats