You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
389 B
8 lines
389 B
4 months ago
|
// 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
|