[bazel] Port 0aa831e0edb1c1deabb96ce2435667cc82bac79b
[llvm-project.git] / clang / test / CXX / lex / lex.literal / lex.ext / p1.cpp
blobec478fbba60a18ec9a9059ab865521407a47c8fc
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wno-deprecated-literal-operator -verify %s
3 void operator "" p31(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
4 void operator "" _p31(long double);
5 long double operator "" pi(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
7 float hexfloat = 0x1p31; // allow hexfloats