When compiling this code (without any header)
template <typename T>
struct Temperature {
T temp;
explicit Temperature(T t)
: temp(t)
{}
};
Temperature<long double> operator "" _f (long double t)
{
return Temperature<long double>((t - 32) / 1.8);
}
int main()
{
auto t = 100.0_f;
t.temp;
100.0_f.temp; // ERROR AT THIS LINE
return 0;
}
The compilers (both g++ 4.8 and clang++ 3.4 on Ubuntu 14.04) will complain that
error: unable to find numeric literal operator ‘operator"" _f.temp’
100.0_f.temp;
^
It seems that the _f.temp
is considered as a suffix there. Why do the compilers parse it like that, instead of stopping at the dot?