xref: /aosp_15_r20/external/clang/test/CXX/lex/lex.literal/lex.ext/p1.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
2 
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}}
6 
7 float hexfloat = 0x1p31; // allow hexfloats
8